14 lines
154 B
CSS
14 lines
154 B
CSS
|
.scroll-container {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
|
||
|
.scroll-container {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
overflow: auto;
|
||
|
}
|