mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 13:23:35 +00:00
221ff7b3af
* cherry pick EventBlockChip * pull data down throug components * add comment * cleanup css Co-authored-by: Carlos Valente <34649812+cpvalente@users.noreply.github.com> --------- Co-authored-by: Carlos Valente <34649812+cpvalente@users.noreply.github.com>
22 lines
304 B
SCSS
22 lines
304 B
SCSS
.chip {
|
|
background-color: $gray-1100;
|
|
white-space: nowrap;
|
|
|
|
font-size: calc(1rem - 3px);
|
|
color: $label-gray;
|
|
padding: 0.125rem 0.5rem;
|
|
border-radius: 2px;
|
|
|
|
&.over {
|
|
color: $playback-negative;
|
|
}
|
|
|
|
&.under {
|
|
color: $playback-ahead;
|
|
}
|
|
|
|
&.due {
|
|
color: $warning-orange;
|
|
}
|
|
}
|