aboutsummaryrefslogtreecommitdiffstats
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/category/[id].vue2
-rw-r--r--pages/quest/[id].vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/pages/category/[id].vue b/pages/category/[id].vue
index 59993e7..a16df59 100644
--- a/pages/category/[id].vue
+++ b/pages/category/[id].vue
@@ -92,7 +92,7 @@ const categoryName = sessionStore.getCategoryById(categoryId)?.display.name;
display: flex;
gap: 1rem;
padding: 1rem;
- overflow: scroll;
+ overflow: auto;
max-height: calc(100% - 55px);
}
diff --git a/pages/quest/[id].vue b/pages/quest/[id].vue
index a3a393d..6695f69 100644
--- a/pages/quest/[id].vue
+++ b/pages/quest/[id].vue
@@ -140,7 +140,7 @@ const duplicateQuest = (oldId: string, newId: string) => {
display: flex;
gap: 1rem;
padding: 1rem;
- overflow: scroll;
+ overflow: auto;
max-height: calc(100% - 55px);
}