Skip to content

Commit d5f00b6

Browse files
committed
Remove old tailwind classes
1 parent ed42c2f commit d5f00b6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/lib/components/input/TextInput.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@
3737
}: Props = $props();
3838
</script>
3939

40-
<label for={inputId} class="label w-full">
40+
<label for={inputId} class="w-full">
4141
<span>{label}</span>
42-
<div class="relative group input-group input-group-divider flex grow flex-row items-center gap-2">
42+
<div class="relative flex grow flex-row items-center gap-2">
4343
{#if Icon}
4444
<Icon />
4545
{/if}
4646
<Input
4747
id={inputId}
4848
{type}
49-
class="input grow"
49+
class="grow"
5050
title={label}
5151
{placeholder}
5252
{autocomplete}
@@ -66,7 +66,7 @@
6666
{#if button}
6767
<Button
6868
type="button"
69-
class={button.class ?? 'variant-filled-primary disabled:opacity-50'}
69+
class={button.class ?? 'disabled:opacity-50'}
7070
onclick={button.onClick}
7171
disabled={button.submits &&
7272
(validationResult === null || (validationResult && !validationResult.valid))}

0 commit comments

Comments
 (0)