1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-05 17:46:41 +07:00

notifications: added list to profile

This commit is contained in:
Fedor Katurov 2023-03-10 18:26:17 +06:00
parent ad85f71a4f
commit 7eb94331d9
14 changed files with 253 additions and 196 deletions

View file

@ -0,0 +1,41 @@
@import 'src/styles/variables';
.grid {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 4;
height: 100%;
}
.head {
@include row_shadow;
width: 100%;
padding: $gap;
}
.list {
@include row_shadow;
overflow-y: auto;
flex: 1 1;
overflow: auto;
width: 100%;
}
.items {
display: grid;
grid-auto-flow: row;
}
.item {
@include row_shadow;
padding-right: $gap;
transition: background-color 0.25s;
&:hover {
background-color: $content_bg_lighter;
}
}