24 lines
334 B
SCSS
24 lines
334 B
SCSS
.container {
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
height: 100vh;
|
|
width: 100%;
|
|
width: 100vw;
|
|
a {
|
|
color: var(--text-color);
|
|
}
|
|
}
|
|
|
|
.underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.sidebar {
|
|
margin-bottom: 1em;
|
|
}
|