Files
ontime/apps/client/src/features/rundown/event-editor/EventEditorEmpty.module.scss
T
Alex Christoffer Rasmussen 340f5478fb add shortcut to jump between blocks (#1181)
* add shortcut

* chore: rename getRelevantBlock to getPreviousBlock
2024-08-19 17:20:58 +02:00

51 lines
694 B
SCSS

.eventEditor {
color: $label-gray;
height: 100%;
max-height: 100%;
overflow-y: auto;
padding: 0.5rem;
display: flex;
flex-direction: column;
overflow-x: auto;
}
.shortcutSection {
flex: 1;
display: grid;
place-content: center;
gap: 1rem;
}
.shortcuts {
font-size: calc(1rem - 3px);
border-collapse: separate;
border-spacing: 4rem 0;
tr {
td:nth-child(odd) {
text-align: left;
}
td:nth-child(even) {
text-align: right;
white-space: nowrap;
}
}
}
.spacer {
height: 1rem;
}
.prompt {
font-size: 1rem;
text-align: left;
margin-left: 4rem;
}
.divider {
display: inline-block;
text-align: center;
width: 1em;
}