41 lines
704 B
SCSS
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;
|
|
}
|