Skip to content

Commit

Permalink
fix: spacing on inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperorb committed Apr 7, 2024
1 parent d8200c0 commit d1f78e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/ui/Input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{#if label}
<label for={id}>{label}</label>
{/if}
<Spacing size={1} />
<Spacing size={2} />
{#if onInput}
<input
{name}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ui/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{#if label}
<label for={name}>{label}</label>
{/if}
<Spacing size={1} />
<Spacing size={2} />
<select {name} bind:value id={name} on:change={onChange} class:fullWidth>
{#if !removeEmpty}
<option value="">{placeholder ?? "undefined"}</option>
Expand Down

0 comments on commit d1f78e5

Please sign in to comment.