tweaked header style
This commit is contained in:
parent
78a054f0a1
commit
90bc30e0c3
|
|
@ -3,8 +3,9 @@ const useStyles = createStyles((theme) => ({
|
||||||
home: {
|
home: {
|
||||||
color: theme.black,
|
color: theme.black,
|
||||||
fontFamily: theme.headings.fontFamily,
|
fontFamily: theme.headings.fontFamily,
|
||||||
fontSize: '1.2em',
|
marginRight: theme.spacing.sm,
|
||||||
fontWeight: 800,
|
fontSize: '1.1em',
|
||||||
|
fontWeight: 700,
|
||||||
'&:not(:hover)': {
|
'&:not(:hover)': {
|
||||||
textDecoration: 'none',
|
textDecoration: 'none',
|
||||||
},
|
},
|
||||||
|
|
@ -12,7 +13,7 @@ const useStyles = createStyles((theme) => ({
|
||||||
link: {
|
link: {
|
||||||
color: theme.black,
|
color: theme.black,
|
||||||
fontFamily: theme.headings.fontFamily,
|
fontFamily: theme.headings.fontFamily,
|
||||||
fontSize: '1.2em',
|
fontSize: '1.1em',
|
||||||
fontWeight: 400,
|
fontWeight: 400,
|
||||||
'&:not(:hover)': {
|
'&:not(:hover)': {
|
||||||
textDecoration: 'none',
|
textDecoration: 'none',
|
||||||
|
|
@ -24,7 +25,7 @@ export function Header({ dark }: { dark?: boolean }) {
|
||||||
return (
|
return (
|
||||||
<Box bg={dark ? 'red' : ''} py="2rem">
|
<Box bg={dark ? 'red' : ''} py="2rem">
|
||||||
<Container size="40em">
|
<Container size="40em">
|
||||||
<Group align="end">
|
<Group align="end" spacing="sm">
|
||||||
<Anchor href="/" className={classes.home}>
|
<Anchor href="/" className={classes.home}>
|
||||||
orion reed
|
orion reed
|
||||||
</Anchor>
|
</Anchor>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue