style tweaks (#524)

* style: allow 2 rows in block title

* fix: accidental change to next and progress bar
This commit is contained in:
Carlos Valente
2023-09-13 21:51:24 +02:00
committed by GitHub
parent 53beea2768
commit 126e31403e
2 changed files with 5 additions and 0 deletions
@@ -5,7 +5,9 @@ import { socketSendJson } from '../utils/socket';
export const useRundownEditor = () => {
const featureSelector = (state: RuntimeStore) => ({
playback: state.playback,
selectedEventId: state.loaded.selectedEventId,
nextEventId: state.loaded.nextEventId,
});
return useRuntimeStore(featureSelector, deepCompare);
@@ -128,6 +128,9 @@ $skip-opacity: 0.1;
.eventTitle {
grid-area: title;
overflow: hidden;
max-height: calc(2.5em + 2px);
line-height: 1.25em;
}
.eventActions {