mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
cb8ba776e2
* refactor: remove info panel * feat: editor panel * wip: event info in drawer * chore: update tests * chore: add scss to processor
39 lines
421 B
SCSS
39 lines
421 B
SCSS
@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;
|
|
}
|