right-tree/frontend/src/assets/styles/step.scss
2021-11-08 11:01:13 +13:00

41 lines
704 B
SCSS

.step-container {
flex-grow: 1;
overflow: auto;
}
.step-overlay {
background-color: #191919c2;
min-height: 100%;
padding-left: 3vw;
padding-right: 3vw;
display: flex;
flex-direction: column;
}
.step-overlay .row {
flex-grow: 1;
}
// This is not ideal - it adjusts margin that bootstrap overrides from MUI
.MuiTablePagination-toolbar {
.MuiTablePagination-displayedRows {
margin-top: 1rem;
}
.MuiTablePagination-selectLabel {
margin-top: 1rem;
}
}
.selectable-section {
height: 100%;
}
.selectable-section:hover {
background-color: #ffffff55;
cursor: pointer;
}
.selected-segment {
background-color: #eeeeee55;
}