mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
20 lines
406 B
CSS
20 lines
406 B
CSS
.quest_editor_EntityListView {
|
|
overflow: auto;
|
|
}
|
|
|
|
.quest_editor_EntityListView_entity_list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 100px);
|
|
grid-column-gap: 6px;
|
|
grid-row-gap: 6px;
|
|
justify-content: center;
|
|
margin: 6px;
|
|
}
|
|
|
|
.quest_editor_EntityListView_entity {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|