Merge pull request #2534 from stinky-lizard/dev

Add pointer cursors to the Bitnode portals in the Bitverse
This commit is contained in:
hydroflame 2022-01-10 14:16:12 -05:00 committed by GitHub
commit 096ab6acfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,24 +15,28 @@ const useStyles = makeStyles(() =>
createStyles({ createStyles({
level0: { level0: {
color: "red", color: "red",
cursor: "pointer",
"&:hover": { "&:hover": {
color: "#fff", color: "#fff",
}, },
}, },
level1: { level1: {
color: "yellow", color: "yellow",
cursor: "pointer",
"&:hover": { "&:hover": {
color: "#fff", color: "#fff",
}, },
}, },
level2: { level2: {
color: "#48d1cc", color: "#48d1cc",
cursor: "pointer",
"&:hover": { "&:hover": {
color: "#fff", color: "#fff",
}, },
}, },
level3: { level3: {
color: "blue", color: "blue",
cursor: "pointer",
"&:hover": { "&:hover": {
color: "#fff", color: "#fff",
}, },