mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 08:39:34 +00:00
v2 beta 4 (#361)
* ux: rename end action * chore: update demo db * style: tweaks on extracted rundown * chore: prevent console logs in production code * feat: go mode * style: remove window size limits * style: rename delete action * style: small tweaks on icons * fix: style override on params * chore: update test db * refactor: small code quality improvements * refactor: prevent circular imports
This commit is contained in:
+43
@@ -0,0 +1,43 @@
|
||||
@use '../../../../theme/v2Styles' as *;
|
||||
|
||||
.buttonContainer {
|
||||
padding-top: $element-spacing;
|
||||
display: grid;
|
||||
grid-template-areas:
|
||||
"go playback"
|
||||
"go transport"
|
||||
"extra extra";
|
||||
grid-template-rows: repeat(3, 32px);
|
||||
gap: $element-spacing;
|
||||
}
|
||||
|
||||
.go {
|
||||
grid-area: go;
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
@mixin spaced-flex {
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
gap: $element-spacing;
|
||||
}
|
||||
|
||||
.playbackContainer {
|
||||
grid-area: playback;
|
||||
@include spaced-flex;
|
||||
}
|
||||
|
||||
.transportContainer {
|
||||
grid-area: transport;
|
||||
@include spaced-flex;
|
||||
}
|
||||
|
||||
.extra {
|
||||
grid-area: extra;
|
||||
@include spaced-flex;
|
||||
}
|
||||
|
||||
.invertX {
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user