Skip to content

Commit

Permalink
web: fix background color of count in nav item
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodrr committed May 21, 2024
1 parent 1d58cfe commit 6d9af85
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/src/components/navigation-menu/navigation-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ function NavigationItem(
) : !isTablet && count !== undefined ? (
<Text
variant="subBody"
sx={{ mr: 1, bg: "hover", px: "3px", borderRadius: "default" }}
sx={{
mr: 1,
px: "3px",
borderRadius: "default"
}}
>
{count > 100 ? "100+" : count}
</Text>
Expand Down

0 comments on commit 6d9af85

Please sign in to comment.