mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
17a7d035bf
fix: close modal with button refactor: small type improvements refactor: migrate time inputs refactor: migrate tooltips refactor: prevent component resizing
24 lines
385 B
SCSS
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;
|
|
}
|