21 lines
359 B
CSS
21 lines
359 B
CSS
.container-notifications {
|
|
height: 100%;
|
|
overflow: auto;
|
|
padding: .2rem 0 75px 0;
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.container-notifications::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.container-notifications::-webkit-scrollbar-thumb {
|
|
background: #bbb;
|
|
border-radius: 3px;
|
|
} |