Skip to content

Commit

Permalink
fix: options hover bg in header
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Sep 24, 2024
1 parent 50b7eb9 commit 3c0251d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@
line-height: 20px;
height: 44px;

&:hover {
background-color: #282828;
}

.MuiTypography-root {
font-size: 12px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const ConnectWalletButton = (props: ConnectWalletButtonProps) => {
color="inherit"
onClick={handleOpenVoteReceipts}
>
<ListItemText primary="Votes Receipts" />
<ListItemText primary="Vote Receipts" />
</ListItem>
) : null}
<ListItem
Expand Down
18 changes: 15 additions & 3 deletions ui/summit-2024/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,13 @@ const Header = () => {
<Typography
sx={{
color: "inherit",
px: "24px",
padding:" 16px 24px",
textDecoration: "none",
borderRadius: "12px",
cursor: "pointer",
"&:hover": {
backgroundColor: "#282828",
}
}}
onClick={() => handleClickMenu(ROUTES.CATEGORIES)}
>
Expand All @@ -320,9 +324,13 @@ const Header = () => {
<Typography
sx={{
color: "inherit",
padding:" 16px 24px",
textDecoration: "none",
px: "24px",
borderRadius: "12px",
cursor: "pointer",
"&:hover": {
backgroundColor: "#282828",
}
}}
onClick={() => handleClickMenu(ROUTES.LEADERBOARD)}
>
Expand All @@ -331,9 +339,13 @@ const Header = () => {
<Typography
sx={{
color: "inherit",
padding:" 16px 24px",
textDecoration: "none",
px: "24px",
borderRadius: "12px",
cursor: "pointer",
"&:hover": {
backgroundColor: "#282828",
}
}}
onClick={() => handleClickMenu(ROUTES.USER_GUIDE)}
>
Expand Down

0 comments on commit 3c0251d

Please sign in to comment.