Skip to content

Commit

Permalink
fix: button size for filter edit panel
Browse files Browse the repository at this point in the history
  • Loading branch information
paring-chan committed Sep 29, 2024
1 parent 5643a1f commit 19b11c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/search/FilterEditPanel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
{/if}

<div class="actions">
<Button size="sm" type="button" variant="ghost-light" on:click={close}>
<Button size="md" type="button" variant="ghost-light" on:click={close}>
<Translation key="ui-search:cancel" />
</Button>
<Button size="sm" type="button" variant="ghost-danger" on:click={onRemove}>
<Button size="md" type="button" variant="ghost-danger" on:click={onRemove}>
<Translation key="ui-search:remove-filter" />
</Button>
<Button size="sm" type="submit">
<Button size="md" type="submit">
<Translation key="ui-search:apply" />
</Button>
</div>
Expand Down

0 comments on commit 19b11c7

Please sign in to comment.