mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
30 lines
331 B
SCSS
30 lines
331 B
SCSS
.halfWidth {
|
|
width: 50%;
|
|
}
|
|
|
|
.fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.fieldForm {
|
|
padding: 1rem;
|
|
background-color: $gray-1350;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.fit {
|
|
width: fit-content;
|
|
}
|
|
|
|
.aliasConstrain {
|
|
min-width: 12em;
|
|
}
|
|
|
|
.twoCols {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
}
|