mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
cb8ba776e2
* refactor: remove info panel * feat: editor panel * wip: event info in drawer * chore: update tests * chore: add scss to processor
42 lines
577 B
SCSS
42 lines
577 B
SCSS
.tableSettings {
|
|
grid-area: settings;
|
|
padding: 1rem;
|
|
background-color: $ui-black;
|
|
display: flex;
|
|
font-size: $inner-section-text-size;
|
|
}
|
|
|
|
.leftPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.sectionTitle {
|
|
color: $gray-700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
column-gap: 1rem;
|
|
row-gap: 0.25em;
|
|
}
|
|
|
|
.option {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.rightPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
|
|
padding-left: 2rem;
|
|
}
|