web: fix background color of count in nav item

This commit is contained in:
Abdullah Atta
2024-05-21 12:31:38 +05:00
committed by Abdullah Atta
parent 1d58cfea3c
commit 6d9af85e2a

View File

@@ -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>