Also added overflow to tile group

This commit is contained in:
Colin Kallemein 2024-10-19 22:25:25 +02:00
parent 36901782ea
commit 1aa07daa35

View File

@ -42,7 +42,8 @@
</div> </div>
</div> </div>
</div> </div>
<div v-else class="p-4"> <div v-else class="h-full overflow-auto">
<div class="p-4">
<button @click="closeGroup" class="btn-cyan mb-4">Back to All Tiles</button> <button @click="closeGroup" class="btn-cyan mb-4">Back to All Tiles</button>
<h4 class="text-lg mb-4">{{ selectedGroup.parent.name }} Group</h4> <h4 class="text-lg mb-4">{{ selectedGroup.parent.name }} Group</h4>
<div class="grid grid-cols-8 gap-2 justify-items-center"> <div class="grid grid-cols-8 gap-2 justify-items-center">
@ -74,6 +75,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</template> </template>
</Modal> </Modal>
</template> </template>