33 lines
487 B
SCSS
33 lines
487 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
width: calc(100vh - 83px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
position: relative;
|
|
|
|
.header {
|
|
flex: 1;
|
|
}
|
|
|
|
.searchbar {
|
|
padding: 40px 24px 24px 24px;
|
|
}
|
|
|
|
.folderlist-container {
|
|
max-height: calc(100vh - 215px);
|
|
height: calc(100vh - 215px);
|
|
overflow: auto;
|
|
border-right: 1px solid var(--grey-medium);
|
|
}
|
|
|
|
.create-container {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|