Skip to content

Commit

Permalink
feat: Allow dialog content to overflow
Browse files Browse the repository at this point in the history
This commit removes the explicit overflow styling of the dialog
component so that content can overflow it such as combobox options.
  • Loading branch information
rpf3 committed May 1, 2024
1 parent f830bd3 commit 822ba5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/dialog/Dialog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="fixed inset-0 z-10">
<div class="flex min-h-full items-center justify-center">
<div
class="relative w-full max-w-lg transform overflow-hidden rounded-lg bg-spek-facade-50 shadow-xl transition-all dark:bg-spek-facade-700"
class="relative w-full max-w-lg transform rounded-lg bg-spek-facade-50 shadow-xl transition-all dark:bg-spek-facade-700"
>
<div class="flex flex-col bg-spek-facade-50 dark:bg-spek-facade-700">
<div class="flex flex-row border-b p-3">
Expand Down

0 comments on commit 822ba5d

Please sign in to comment.