1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-05 09:36:41 +07:00
vault-frontend/src/containers/notifications/NotificationList/styles.module.scss
2023-03-10 18:26:17 +06:00

41 lines
541 B
SCSS

@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;
}
}