Files
ontime/apps/client/src/features/rundown/rundown-delay/RundownDelay.module.scss
T
Carlos Valente 17a7d035bf refactor: style cleanups and migrations
fix: close modal with button
refactor: small type improvements
refactor: migrate time inputs
refactor: migrate tooltips
refactor: prevent component resizing
2025-07-07 18:22:10 +02:00

24 lines
385 B
SCSS

@use '../blockMixins' as *;
.delay {
@include block-styling;
margin-block: 0.25rem;
padding-right: 0.25rem;
background-color: $block-bg2;
display: grid;
grid-template-columns: 2rem 1fr auto auto;
align-items: center;
height: $secondary-block-height;
gap: 0.5rem;
&.hasCursor {
outline: 1px solid $block-cursor-color;
}
}
.drag {
@include drag-style;
}