From 83626157dea332f63eeccf5e3a98957b2ebe1809 Mon Sep 17 00:00:00 2001 From: eti Date: Wed, 15 Jul 2026 18:19:02 +0200 Subject: [PATCH] web/components/ui: tweak Input & Tag Signed-off-by: eti --- web/src/lib/components/ui/Input.svelte | 2 +- web/src/lib/components/ui/Tag.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/lib/components/ui/Input.svelte b/web/src/lib/components/ui/Input.svelte index 5498db0e..1281328d 100644 --- a/web/src/lib/components/ui/Input.svelte +++ b/web/src/lib/components/ui/Input.svelte @@ -2,7 +2,7 @@ import { tv, type VariantProps } from "tailwind-variants"; export const inputField = tv({ - base: "flex items-center gap-2 rounded border bg-background-default px-2 py-1 min-h-8 transition-colors", + base: "flex items-center gap-2 rounded border bg-background-default px-2 py-1 min-h-9 transition-colors", variants: { error: { false: diff --git a/web/src/lib/components/ui/Tag.svelte b/web/src/lib/components/ui/Tag.svelte index 1e65541d..09b86af8 100644 --- a/web/src/lib/components/ui/Tag.svelte +++ b/web/src/lib/components/ui/Tag.svelte @@ -6,7 +6,7 @@ variants: { color: { default: "border border-border-default bg-background-default text-foreground-default", - gray: "bg-background-inset text-foreground-muted" + gray: "border border-transparent bg-background-inset text-foreground-muted" } }, defaultVariants: { -- 2.51.2