mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
cd9dbcdc68
* refactor: remove guards on event creation * style: minimum safe block size * fix: insert after finds previous valid cue
28 lines
418 B
SCSS
28 lines
418 B
SCSS
@use '../blockMixins' as *;
|
|
|
|
.block {
|
|
@include block-spacing;
|
|
@include block-styling;
|
|
|
|
background-color: $block-bg2;
|
|
|
|
min-width: 34rem;
|
|
display: grid;
|
|
grid-template-columns: 2rem 1fr auto;
|
|
align-items: center;
|
|
height: $secondary-block-height;
|
|
gap: 0.5rem;
|
|
|
|
&.hasCursor {
|
|
outline: 1px solid $block-cursor-color;
|
|
}
|
|
}
|
|
|
|
.drag {
|
|
@include drag-style;
|
|
}
|
|
|
|
.actionMenu {
|
|
justify-self: flex-end;
|
|
}
|