23 lines
488 B
SCSS
23 lines
488 B
SCSS
|
.notification-page {
|
||
|
.main-page__content {
|
||
|
// height: calc(100dvh - 68px);
|
||
|
height: 100ddvh;
|
||
|
min-height: 100dvh;
|
||
|
margin-right: var(--sidebar-collapsed-width);
|
||
|
// display: flex;
|
||
|
|
||
|
.notif-list {
|
||
|
padding: 1em 0;
|
||
|
height: calc(100dvh - 18em);
|
||
|
overflow-y: auto;
|
||
|
// display: flex;
|
||
|
// flex-direction: column;
|
||
|
// justify-content: center;
|
||
|
// overflow: hidden auto;
|
||
|
}
|
||
|
.badge-light {
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
}
|
||
|
}
|