comicsite/_sass/sidebar.scss
2024-07-26 18:49:01 -05:00

35 lines
579 B
SCSS

.columns {
max-width: 80%;
max-height: 90vh;
display: flex;
margin-top: 5px; margin-bottom: 0px;
margin-left: auto; margin-right: auto;
justify-content: space-around;
border: 1px solid black;
}
.left-sidebar {
background: darkgray;
padding: 10px;
overflow-x: scroll;
overflow-y: scroll;
width: max-content;
text-align: left;
}
.main-content {
width: 60%;
flex: 5;
margin: 10px;
border: 1px solid black;
max-height: 89vh;
}
.right-sidebar {
background: darkgray;
flex: 1;
display: flex;
flex-direction: column;
position: sticky;
}