commit: 770d12f7adda5659ff01b83ad3e172c27bae818d
parent b343599e6f71bc68f868ac3d44d37af4b1f2665f
Author: Henry Jameson <me@hjkos.com>
Date: Wed, 15 Jun 2022 04:03:18 +0300
limit width of popover to slightly lesser than screen width
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/components/popover/popover.vue b/src/components/popover/popover.vue
@@ -46,6 +46,7 @@
z-index: 90000;
position: fixed;
min-width: 0;
+ max-width: 90vw;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
box-shadow: var(--popupShadow);
}