mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
817ebcdd26
* chore: cleanup outdated comment * style: align blocks * style: use ui-black background * chore: clarify docs * feat: event defaults * chore: cleanup
32 lines
531 B
SCSS
32 lines
531 B
SCSS
@use '../blockMixins' as *;
|
|
|
|
.delay {
|
|
@include block-spacing;
|
|
@include block-styling;
|
|
margin-left: 0.5rem;
|
|
|
|
background-color: $block-bg2;
|
|
|
|
display: grid;
|
|
grid-template-columns: 2rem 1fr auto;
|
|
grid-template-areas: 'drag inpt btns';
|
|
align-items: center;
|
|
height: $secondary-block-height;
|
|
gap: 0.5rem;
|
|
|
|
&.hasCursor {
|
|
outline: 1px solid $block-cursor-color;
|
|
}
|
|
}
|
|
|
|
.drag {
|
|
@include drag-style;
|
|
grid-area: drag;
|
|
}
|
|
|
|
.actionButtons {
|
|
grid-area: btns;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
} |