1
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:
2022-01-22 18:52:29 -05:00
parent f62c057f5d
commit 0343aa9be4
19 changed files with 371 additions and 352 deletions

View File

@@ -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;
}

View File

@@ -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>
);