mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-01-11 03:02:56 -05:00
stop being lazy with css selectors
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title a {
|
||||
.link {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ const PageTitle = ({ className, ...rest }: Props) => {
|
||||
return (
|
||||
<h1 className={classNames(styles.title, className)}>
|
||||
<Link href={canonical}>
|
||||
<a {...rest} />
|
||||
<a className={styles.link} {...rest} />
|
||||
</Link>
|
||||
</h1>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user