diff --git a/resources/js/components/ui/dialog/DialogContent.vue b/resources/js/components/ui/dialog/DialogContent.vue index c39c04c0..5376f217 100644 --- a/resources/js/components/ui/dialog/DialogContent.vue +++ b/resources/js/components/ui/dialog/DialogContent.vue @@ -34,7 +34,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits) v-bind="{ ...$attrs, ...forwarded }" :class=" cn( - 'bg-card data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-2xl border-2 border-foreground p-6 shadow-lg duration-200 sm:max-w-lg', + 'bg-card data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 max-h-[85dvh] overflow-y-auto rounded-2xl border-2 border-foreground p-6 shadow-lg duration-200 sm:max-w-lg', props.class, )" > diff --git a/resources/js/components/ui/dialog/DialogScrollContent.vue b/resources/js/components/ui/dialog/DialogScrollContent.vue index 90759a55..ded73f7e 100644 --- a/resources/js/components/ui/dialog/DialogScrollContent.vue +++ b/resources/js/components/ui/dialog/DialogScrollContent.vue @@ -32,7 +32,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits) diff --git a/resources/js/components/ui/tabs/TabsList.vue b/resources/js/components/ui/tabs/TabsList.vue index 757239c6..02855184 100644 --- a/resources/js/components/ui/tabs/TabsList.vue +++ b/resources/js/components/ui/tabs/TabsList.vue @@ -15,7 +15,7 @@ const delegatedProps = reactiveOmit(props, "class") data-slot="tabs-list" v-bind="delegatedProps" :class="cn( - 'inline-flex h-10 w-fit items-center gap-2', + 'inline-flex h-10 w-fit max-w-full items-center gap-2 overflow-x-auto [scrollbar-width:none] [&::-webkit-scrollbar]:hidden', props.class, )" >