We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7be128c + 538ccde commit 94f6c7eCopy full SHA for 94f6c7e
src/lib/components/Modal.svelte
@@ -61,7 +61,7 @@
61
? 'w-[95%]!'
62
: ''} {flexible ? 'w-fit! max-w-[95%]' : ''} m-auto py-4">
63
<div class="flex items-center rounded-t-lg bg-zinc-900 p-4">
64
- <span class="flex-grow text-lg font-bold">{title}</span>
+ <span class="grow text-lg font-bold">{title}</span>
65
<button aria-label="close" onclick={close}><IconClose /></button>
66
</div>
67
<div
src/lib/components/modals/ColorGradientModal.svelte
@@ -19,7 +19,7 @@
19
<div class="flex flex-col space-y-1">
20
{#each gradientSteps ?? [] as _, i}
21
<div class="flex w-full items-center rounded-md bg-zinc-900 p-2">
22
- <div class="flex-grow">
+ <div class="grow">
23
<ColorPicker
24
bind:hex={gradientSteps[i]}
25
position="responsive"
0 commit comments