mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
45fe669f0a
* refactor: simplify excel import * chore: add external deepmerge utility * chore: create import map utilities * chore: increase size limits on uploads * style: small presentation tweaks * feat: resolve times on excel import, refs #508
41 lines
467 B
SCSS
41 lines
467 B
SCSS
@use '../../../../theme/ontimeColours' as *;
|
|
|
|
@mixin row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
padding: 0 0.25rem;
|
|
}
|
|
|
|
.stepRow {
|
|
display: flex;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.idle {
|
|
@include row;
|
|
color: $blue-500;
|
|
}
|
|
|
|
.inactive {
|
|
@include row;
|
|
color: $gray-700;
|
|
}
|
|
|
|
.active {
|
|
@include row;
|
|
color: $blue-700;
|
|
}
|
|
|
|
|
|
.inactiveIcon {
|
|
color: $gray-700;
|
|
}
|
|
|
|
.activeIcon {
|
|
color: $blue-500;
|
|
}
|