mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-03 21:39:08 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
50 lines
753 B
SCSS
50 lines
753 B
SCSS
.preview {
|
|
background-color: $ui-black;
|
|
display: grid;
|
|
place-content: center;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.mainContent {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
width: 100%;
|
|
color: var(--override-colour, $ui-white);
|
|
|
|
&[data-phase='pending'] {
|
|
color: $ontime-roll;
|
|
}
|
|
&[data-phase='overtime'] {
|
|
color: $playback-negative;
|
|
}
|
|
&[data-phase='none'] {
|
|
opacity: $opacity-disabled;
|
|
}
|
|
}
|
|
|
|
.secondaryContent {
|
|
border-top: 1px solid $white-7;
|
|
}
|
|
|
|
.blackout {
|
|
display: none;
|
|
}
|
|
|
|
.eventStatus {
|
|
position: absolute;
|
|
left: 0;
|
|
margin: 0.5rem 0.25rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.statusIcon {
|
|
color: $gray-1000;
|
|
|
|
&[data-active='true'] {
|
|
color: $active-indicator;
|
|
}
|
|
}
|