fix(dashboard): truncate price cell titles (#9715)

Before:
![Screenshot 2024-10-22 at 17 14 56](https://github.com/user-attachments/assets/7ec74e70-c69f-4346-b15a-665fed27e688)

After
![Screenshot 2024-10-22 at 17 26 15](https://github.com/user-attachments/assets/b353c40b-7451-4bdf-9459-1494c18c7531)


Co-authored-by: Kasper Fabricius Kristensen <45367945+kasperkristensen@users.noreply.github.com>
This commit is contained in:
Frane Polić
2024-11-04 12:01:00 +01:00
committed by GitHub
parent ab90900d40
commit 61cb97da26
3 changed files with 17 additions and 8 deletions

View File

@@ -20,7 +20,9 @@ export const IncludesTaxTooltip = ({
: t("general.excludesTaxTooltip")
}
>
<BuildingTax className={clx({ "text-ui-fg-muted": !includesTax })} />
<BuildingTax
className={clx("shrink-0", { "text-ui-fg-muted": !includesTax })}
/>
</Tooltip>
)
}