mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-24 00:19:21 +00:00
1a08b39b8b
* feat: update auto cue numbering * feat: renumber from ui * refactor: patchEntries is not used * chore: format * fix: correct cue at top of group * fix: handle precision * refactor dialog * bump limit for performance time test * extract type * add class name to lable * fix rebase * refator: extract renumering logic * chore: comments for getIntegerAndFraction function * chore: add the for renumber mutation * fix: fraction match precision * refactor: small cleanup * refactor: use more narrow validator --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
23 lines
387 B
SCSS
23 lines
387 B
SCSS
@use '../../../theme/ontimeColours' as *;
|
|
@use '../../../theme/ontimeStyles' as *;
|
|
|
|
.fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
padding-inline: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.label {
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
}
|
|
|
|
.error {
|
|
padding-inline: 0.5rem;
|
|
font-size: $inner-section-text-size;
|
|
color: $error-red;
|
|
margin: 0;
|
|
}
|