mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-10-13 23:14:28 -04:00
move more junk out of index.css and into components
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
.link {
|
||||
margin: 0 0.4em;
|
||||
color: var(--text);
|
||||
background: none !important;
|
||||
padding-bottom: 0;
|
||||
color: var(--text) !important;
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
color: var(--link);
|
||||
color: var(--link) !important;
|
||||
}
|
||||
|
@@ -9,7 +9,12 @@ type Props = {
|
||||
};
|
||||
|
||||
const OctocatLink = ({ repo, className }: Props) => (
|
||||
<a className={styles.link} href={`https://github.com/${repo}`} target="_blank" rel="noopener noreferrer">
|
||||
<a
|
||||
className={classNames("no-underline", styles.link)}
|
||||
href={`https://github.com/${repo}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<OctocatOcticon fill="currentColor" className={classNames("icon", className)} />
|
||||
</a>
|
||||
);
|
||||
|
Reference in New Issue
Block a user