36 lines
593 B
SCSS
36 lines
593 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;
|
|
margin: 5px
|
|
}
|