Fix Github LinkItem color and LinkItem width

This commit is contained in:
Justin Edmund 2023-01-31 23:18:46 -08:00
parent dc6b12fc7a
commit cdf3b8afb6
3 changed files with 7 additions and 7 deletions

View file

@ -67,5 +67,10 @@
.LinkItem {
max-width: calc($width / 3 * 2);
@include breakpoint(phone) {
max-width: inherit;
width: 100%;
}
}
}

View file

@ -21,7 +21,7 @@ const RoadmapPage = () => {
<section className="notes">
<p>{about('roadmap.blurb')}</p>
<p>{about('roadmap.link.intro')}</p>
<div className="LinkItem">
<div className="Github LinkItem">
<Link href="https://github.com/users/jedmund/projects/1/views/3">
<a
href="https://github.com/users/jedmund/projects/1/views/3"

View file

@ -167,14 +167,9 @@ select {
}
&.Github {
.Left svg {
background: white;
border-radius: calc($diameter / 2);
}
&:hover {
.Left svg {
fill: #6e5494;
fill: var(--text-primary);
}
}
}