mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
110d3fb7a3
* lint: cleanup unused * refactor: rename component to avoid conflict * style: gap in element row * refactor: rename playstate -> playback * refactor: cleanup usages of timer and prepare integration manager * style: re-arrange button order * refactor: improve event loading * feat(timer-service): hot reload * fix: issue with duration input * chore: cleanup debug * refactor: resolve poll from runtime store * refactor: cleanup merge * refactor: small improvements in timer hot-reload
35 lines
495 B
SCSS
35 lines
495 B
SCSS
@use '../../../theme/main' as *;
|
|
|
|
.quickAdd {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
align-items: center;
|
|
margin: 4px 0;
|
|
font-size: 12px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.btnRow {
|
|
justify-self: center;
|
|
display: flex;
|
|
gap: 10%;
|
|
|
|
.quickBtn {
|
|
width: auto;
|
|
padding: 0 32px;
|
|
}
|
|
}
|
|
|
|
.keyboard {
|
|
margin-left: 8px;
|
|
padding: 0 4px;
|
|
color: $label-gray;
|
|
border-radius: 2px;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|