aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Control/Modal.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-02-15 23:04:33 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-02-15 23:04:33 +0000
commit1195b085e31c44bc8fec6817d64063de9022eb66 (patch)
tree6f30cbfbf30acc19347890080cbc907ad094106b /src/components/Control/Modal.vue
parent1869b5c5f9565b5e9e20697c4401a2f9ba9f2c3a (diff)
Partially add itemstack support
Diffstat (limited to 'src/components/Control/Modal.vue')
-rw-r--r--src/components/Control/Modal.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Control/Modal.vue b/src/components/Control/Modal.vue
index d47d281..46d5da5 100644
--- a/src/components/Control/Modal.vue
+++ b/src/components/Control/Modal.vue
@@ -29,6 +29,7 @@ const model = defineModel();
background-color: rgba(0, 0, 0, 0.5);
transition: opacity 0.3s;
display: none;
+ overflow: visible;
}
.modal-content {
@@ -38,7 +39,7 @@ const model = defineModel();
width: 100%;
max-width: 600px;
max-height: 80%;
- overflow-y: auto;
+ overflow-y: visible;
border-radius: 4px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}