diff --git a/web-ui/src/app/precedents/[id]/page.tsx b/web-ui/src/app/precedents/[id]/page.tsx index 7af8c28..55f1b51 100644 --- a/web-ui/src/app/precedents/[id]/page.tsx +++ b/web-ui/src/app/precedents/[id]/page.tsx @@ -313,10 +313,10 @@ function CitationBlock({ type="button" onClick={onStartEdit} title="ערוך מראה מקום" - className="inline-flex items-center gap-1 rounded-md border border-rule bg-surface hover:bg-rule-soft/50 text-ink h-7 px-2 text-[0.72rem]" + aria-label="ערוך מראה מקום" + className="inline-flex items-center justify-center rounded-md border border-rule bg-surface hover:bg-rule-soft/50 text-ink-muted hover:text-navy h-7 w-7" > - ערוך diff --git a/web-ui/src/components/precedents/formatted-citation.tsx b/web-ui/src/components/precedents/formatted-citation.tsx index d9d8fa2..461a146 100644 --- a/web-ui/src/components/precedents/formatted-citation.tsx +++ b/web-ui/src/components/precedents/formatted-citation.tsx @@ -97,24 +97,19 @@ export function CitationCopyButton({ } } - const dims = size === "xs" ? "h-7 px-2 text-[0.72rem]" : "h-8 px-2.5 text-xs"; + const dims = size === "xs" ? "h-7 w-7" : "h-8 w-8"; return ( );