24 lines
324 B
SCSS
24 lines
324 B
SCSS
.sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
align-self: start;
|
|
|
|
position: sticky;
|
|
top: 5%;
|
|
|
|
width: 20%;
|
|
|
|
&__nav {
|
|
width: 100%;
|
|
max-height: 80vh;
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
border-radius: 5px;
|
|
|
|
&__item {
|
|
padding: 2px 10px 5px 10px;
|
|
}
|
|
}
|
|
}
|