mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
23 lines
359 B
CSS
23 lines
359 B
CSS
.BoxScrollableBody {
|
|
position: relative;
|
|
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
|
|
.ScrollContainer {
|
|
position: absolute;
|
|
|
|
padding: 10px 40px;
|
|
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
|
|
overflow-y: scroll;
|
|
|
|
/* Custom scrollbar (firefox only!) */
|
|
scrollbar-color: var(--bg-light) var(--bg-dark);
|
|
scrollbar-width: auto;
|
|
}
|