Skip to content

Commit

Permalink
change color to white to fix mobile turning it blue >:(
Browse files Browse the repository at this point in the history
  • Loading branch information
Kandles11 committed Jun 9, 2024
1 parent 178b9bf commit 579b0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/links.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { clubEmail, linksPageLinks } from '../data'
>
<a href={`mailto:${clubEmail}`}>
<div
style="width: 100%; padding: 20px; border-radius: 25px; border-style: solid; border-color: #380D0D; background-color: #250F0F;"
style="width: 100%; padding: 20px; border-radius: 25px; border-style: solid; border-color: #380D0D; background-color: #250F0F; color: white;"
>
<h2>Email</h2>
<p>
Expand All @@ -29,7 +29,7 @@ import { clubEmail, linksPageLinks } from '../data'
{
linksPageLinks.map((link) => (
<a target="_blank" href={link.href}>
<div style="width: 100%; padding: 20px; border-radius: 25px; border-style: solid;">
<div style="width: 100%; padding: 20px; border-radius: 25px; border-style: solid; color: white; border-color: white;">
<h2>{link.name}</h2>
</div>
</a>
Expand Down

0 comments on commit 579b0f3

Please sign in to comment.