mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
25 lines
322 B
SCSS
25 lines
322 B
SCSS
.halfWidth {
|
|
width: 50%;
|
|
}
|
|
|
|
.fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.twoCols {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.formColumn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.current {
|
|
// marker consumed by the shared Panel.Table active-row treatment
|
|
background-color: inherit;
|
|
}
|