1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

added login stamp

This commit is contained in:
Fedor Katurov 2023-10-30 21:17:45 +06:00
parent 84c02ffaa3
commit e4b158dada
6 changed files with 283 additions and 52 deletions

View file

@ -58,3 +58,24 @@ $cols: math.div($content_width, $cell);
grid-row-end: span 1;
}
}
.login {
grid-row-start: 4;
grid-row-end: span 2;
grid-column: -3 / -4;
display: flex;
align-items: stretch;
justify-content: stretch;
overflow: hidden;
position: relative;
@include desktop {
display: none;
}
@media (max-width: $flow_hide_recents) {
display: flex;
grid-column: 1 / 2;
grid-row-end: span 2;
}
}