From 7aa41675ab95bdd351446ecae41e72b3be8de734 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 19 Jan 2026 18:19:35 +0100 Subject: [PATCH] fix(ui): modal issues - tooltips can not extend outside the modal causing a scrollbar to appear - modals are to wide - remove unused minWidth and maxWidth props --- resources/views/components/modal-input.blade.php | 7 ++----- .../views/livewire/project/service/configuration.blade.php | 3 +-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/resources/views/components/modal-input.blade.php b/resources/views/components/modal-input.blade.php index d65162d36..bdc9d9ac7 100644 --- a/resources/views/components/modal-input.blade.php +++ b/resources/views/components/modal-input.blade.php @@ -7,8 +7,6 @@ 'action' => 'delete', 'content' => null, 'closeOutside' => true, - 'minWidth' => '36rem', - 'maxWidth' => '48rem', 'isFullWidth' => false, ]) @@ -16,7 +14,6 @@ $modalId = 'modal-' . uniqid(); @endphp -
x-transition:leave="ease-in duration-100" x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100" x-transition:leave-end="opacity-0 -translate-y-2 sm:scale-95" - class="relative w-full min-w-full lg:min-w-[{{ $minWidth }}] max-w-[{{ $maxWidth }}] max-h-[calc(100vh-2rem)] border rounded-sm drop-shadow-sm bg-white border-neutral-200 dark:bg-base dark:border-coolgray-300 flex flex-col"> + class="relative w-full lg:w-auto lg:min-w-2xl lg:max-w-4xl border rounded-sm drop-shadow-sm bg-white border-neutral-200 dark:bg-base dark:border-coolgray-300 flex flex-col">