mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-31 03:49:11 +00:00
34 lines
567 B
SCSS
34 lines
567 B
SCSS
.inline {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
|
|
> span {
|
|
font-variant-numeric: tabular-nums;
|
|
text-align: right;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
// attempt to match with ontimeTextInputs
|
|
.input {
|
|
color: $gray-200;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
background-color: $gray-1200;
|
|
padding: 0 1rem;
|
|
font-size: 1rem;
|
|
height: 2.5rem;
|
|
outline: none;
|
|
|
|
&:hover {
|
|
background-color: $gray-1100;
|
|
}
|
|
|
|
&:focus {
|
|
background-color: $gray-1000;
|
|
color: $gray-50;
|
|
border: 1px solid $blue-500;
|
|
}
|
|
}
|