style: tweaks to editor (#738)

This commit is contained in:
Carlos Valente
2024-01-28 22:42:19 +01:00
committed by GitHub
parent 5de40e8679
commit 4c77d26a71
14 changed files with 66 additions and 56 deletions
@@ -29,7 +29,7 @@ $skip-opacity: 0.1;
}
&.selected {
background-color: $gray-1350;
background-color: $gray-1325;
}
&.play {
@@ -123,15 +123,12 @@ $skip-opacity: 0.1;
.eventTimers {
grid-area: times;
display: flex;
align-items: center;
gap: $block-clearance;
height: 100%;
.timerNote {
display: grid;
place-content: center;
color: $blue-500;
margin-right: 0.5em;
margin-right: $block-clearance;
font-size: 1.5em;
}
}
@@ -145,9 +142,7 @@ $skip-opacity: 0.1;
.eventActions {
grid-area: actions;
display: flex;
gap: $block-clearance;
justify-content: flex-end;
height: 100%;
}
.progressBg {
@@ -24,7 +24,7 @@ function formatOverlap(previousEnd: number | null, timeStart: number): string |
const overlapString = removeLeadingZero(millisToString(Math.abs(overlap)));
return `${overlap > 0 ? 'Overlap' : 'Gap'}: ${overlapString}`;
return `${overlap > 0 ? 'Overlap' : 'Gap'} ${overlapString}`;
}
export default function RundownIndicators(props: RundownIndicatorProps) {