mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 20:03:52 +00:00
18 lines
220 B
SCSS
18 lines
220 B
SCSS
.halfWidth {
|
|
width: 50%;
|
|
}
|
|
|
|
.fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.twoCols {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.current {
|
|
background-color: $blue-1100 !important; // fighting zebra styles
|
|
}
|