newsreader/src/newsreader/scss/components/sidebar/_sidebar.scss
2020-06-03 20:49:35 +02:00

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;
}
}
}