mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
34 lines
654 B
CSS
34 lines
654 B
CSS
.quest_editor_EventsView {
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.quest_editor_EventsView_chain {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 3px;
|
|
}
|
|
|
|
.quest_editor_EventsView_chain_arrow {
|
|
font-size: 18px; /* For icon */
|
|
margin: 3px;
|
|
}
|
|
|
|
.quest_editor_EventsView_event:last-of-type .quest_editor_EventsView_chain_arrow {
|
|
color: var(--text-color-disabled);
|
|
}
|
|
|
|
.quest_editor_EventsView_event {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.quest_editor_EventsView_event th {
|
|
text-align: left;
|
|
}
|