mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 20:03:52 +00:00
45fe669f0a
* refactor: simplify excel import * chore: add external deepmerge utility * chore: create import map utilities * chore: increase size limits on uploads * style: small presentation tweaks * feat: resolve times on excel import, refs #508
23 lines
341 B
SCSS
23 lines
341 B
SCSS
@use "../../../../theme/_ontimeColours" as *;
|
|
|
|
@mixin pad-item {
|
|
padding-left: 0.5rem;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
.previewTable {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-rows: repeat(6, auto);
|
|
font-size: calc(1rem - 2px);
|
|
}
|
|
|
|
.field {
|
|
font-weight: 200;
|
|
@include pad-item;
|
|
}
|
|
|
|
.value {
|
|
@include pad-item;
|
|
}
|