13 lines
226 B
CSS
13 lines
226 B
CSS
|
|
.overview {
|
||
|
|
position: fixed;
|
||
|
|
overflow-y: scroll;
|
||
|
|
overflow-x: hidden;
|
||
|
|
border-left: thin solid lightgrey;
|
||
|
|
bottom: 20px;
|
||
|
|
width: 100%;
|
||
|
|
padding-left: 50px;
|
||
|
|
padding-top: 70px;
|
||
|
|
margin-left: 10px;
|
||
|
|
height: 100vh;
|
||
|
|
}
|