mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 00:29:41 +00:00
de9a7a87fd
* refactor(project structure): UI * refactor(project structure): extract utilities * refactor(project structure): remove unused * refactor(project structure): electron * refactor(project structure): server refactor: migrate to vitest refactor: monorepo config * refactor: extract application menu * refactor: exit process * refactor: extract tray menu * chore: electron build * Added Seconds in studio clock #282 --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de>
46 lines
694 B
SCSS
46 lines
694 B
SCSS
@use '../../../theme/v2Styles' as *;
|
|
|
|
.modalBody {
|
|
min-height: 40vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
|
|
.options {
|
|
margin-bottom: 1.5em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.notes {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.info {
|
|
background-color: $bg-container-onlight;
|
|
margin: 1em 0;
|
|
padding: 0.5em;
|
|
border-radius: 2px;
|
|
color: $text-black;
|
|
position: relative;
|
|
}
|
|
|
|
.corner {
|
|
position: absolute;
|
|
right: 4px;
|
|
top: 4px;
|
|
}
|
|
|
|
.infoList {
|
|
font-size: 0.9em;
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.flexColumnLeft {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|