mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 16:49:41 +00:00
17a7d035bf
fix: close modal with button refactor: small type improvements refactor: migrate time inputs refactor: migrate tooltips refactor: prevent component resizing
30 lines
485 B
SCSS
30 lines
485 B
SCSS
/** binder + gap + pb-actions */
|
|
$gap-left: calc(2rem + 0.25rem + 3rem);
|
|
|
|
.indicators {
|
|
font-size: calc(1rem - 5px);
|
|
position: absolute;
|
|
top: -1em;
|
|
z-index: $zindex-floating;
|
|
margin-left: $gap-left;
|
|
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
@mixin indicator($bg-colour) {
|
|
padding: 0 0.5rem;
|
|
border-radius: 2px;
|
|
background-color: $bg-colour;
|
|
color: $ui-white;
|
|
}
|
|
|
|
.delay {
|
|
@include indicator($ontime-delay);
|
|
}
|
|
|
|
.gap {
|
|
@include indicator($blue-500);
|
|
}
|