Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import makeStyles from "utils/makeStyles"; export const useNavLinkStyles = makeStyles((theme) => ({ link: { color: theme.palette.text.secondary, display: "flex", flex: "1", fontSize: "2rem", maxWidth: "10.5rem", padding: theme.spacing(1, 1.5), }, selected: { color: theme.palette.secondary.main, }, label: { alignSelf: "center", marginTop: 0, }, notification: { marginRight: "0.8rem", }, })); |