Skip to content

Commit

Permalink
surrendering to the font awesome gods... no icons for right now, I guess
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanlalchand committed Jul 7, 2024
1 parent e2ab0af commit b3c896e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/SocialIcons.astro
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ const links = [
.social-icons a {
color: #000;
font-size: 1.5rem;
display: flex;
align-items: center;
height: 24px; /* Ensure height is set */
}

.social-icons a:hover {
Expand All @@ -60,4 +63,10 @@ const links = [
.social-icons a[aria-label="MuckRack"]:hover {
color: #1da1f2; /* MuckRack color */
}

.social-icons svg {
width: 24px;
height: 24px;
fill: currentColor; /* Ensure the fill color is set */
}
</style>
14 changes: 14 additions & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@ const { title } = Astro.props;
<li>
<a href="/contact" class="text-gray-600 hover:underline">Contact</a>
</li>
<li>
<a
href="https://muckrack.com/hayleyshasteen"
class="text-gray-600 hover:underline"
>
Muck Rack
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/hayleylalchand/"
class="text-gray-600 hover:underline">LinkedIn</a
>
</li>
</ul>
</nav>
</header>
Expand Down

0 comments on commit b3c896e

Please sign in to comment.