mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
17a7d035bf
fix: close modal with button refactor: small type improvements refactor: migrate time inputs refactor: migrate tooltips refactor: prevent component resizing
45 lines
731 B
SCSS
45 lines
731 B
SCSS
.label {
|
|
display: block;
|
|
margin-top: 2rem;
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
}
|
|
|
|
.controls {
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.input {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.twoSides {
|
|
margin-top: 0.25rem;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0.25rem;
|
|
height: 1.5rem;
|
|
}
|
|
|
|
.fakeInput {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
max-width: 7.5em;
|
|
height: 2rem;
|
|
display: grid;
|
|
place-content: center;
|
|
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
color: $gray-200;
|
|
border-radius: $component-border-radius-md;
|
|
border: 1px solid transparent;
|
|
letter-spacing: 0.5px;
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
padding-inline: 0.5em;
|
|
outline: none;
|
|
|
|
} |