fix(app): use smaller close icon on tabs to match comment cards

This commit is contained in:
David Hill
2026-01-27 13:55:07 +00:00
parent 52387e7f33
commit 2d0049f0d9
2 changed files with 4 additions and 2 deletions

View File

@@ -38,8 +38,9 @@ export function SortableTab(props: { tab: string; onTabClose: (tab: string) => v
closeButton={
<Tooltip value={language.t("common.closeTab")} placement="bottom">
<IconButton
icon="close"
icon="close-small"
variant="ghost"
class="h-5 w-5"
onClick={() => props.onTabClose(props.tab)}
aria-label={language.t("common.closeTab")}
/>

View File

@@ -2036,8 +2036,9 @@ export default function Page() {
closeButton={
<Tooltip value={language.t("common.closeTab")} placement="bottom">
<IconButton
icon="close"
icon="close-small"
variant="ghost"
class="h-5 w-5"
onClick={() => tabs().close("context")}
aria-label={language.t("common.closeTab")}
/>