Skip to content

Commit 94f6c7e

Browse files
committed
merge
2 parents 7be128c + 538ccde commit 94f6c7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/components/Modal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
? 'w-[95%]!'
6262
: ''} {flexible ? 'w-fit! max-w-[95%]' : ''} m-auto py-4">
6363
<div class="flex items-center rounded-t-lg bg-zinc-900 p-4">
64-
<span class="flex-grow text-lg font-bold">{title}</span>
64+
<span class="grow text-lg font-bold">{title}</span>
6565
<button aria-label="close" onclick={close}><IconClose /></button>
6666
</div>
6767
<div

src/lib/components/modals/ColorGradientModal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div class="flex flex-col space-y-1">
2020
{#each gradientSteps ?? [] as _, i}
2121
<div class="flex w-full items-center rounded-md bg-zinc-900 p-2">
22-
<div class="flex-grow">
22+
<div class="grow">
2323
<ColorPicker
2424
bind:hex={gradientSteps[i]}
2525
position="responsive"

0 commit comments

Comments
 (0)