phantasmal-world/src/quest_editor/gui/EntityListView.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;
}