1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-13 19:55:26 -04:00

remove global .icon style

This commit is contained in:
2022-01-30 09:00:59 -05:00
parent 6fbe9ae66b
commit 2a29d713bb
17 changed files with 79 additions and 56 deletions
@@ -6,3 +6,9 @@
.link:hover {
color: var(--link) !important;
}
.icon {
width: 1.2em;
height: 1.2em;
vertical-align: -0.2em;
}
+1 -1
View File
@@ -15,7 +15,7 @@ const OctocatLink = ({ repo, className }: Props) => (
target="_blank"
rel="noopener noreferrer"
>
<OctocatOcticon fill="currentColor" className={classNames("icon", className)} />
<OctocatOcticon fill="currentColor" className={classNames(styles.icon, className)} />
</a>
);