This commit is contained in:
2025-05-07 14:31:29 -07:00
parent f3df5227d6
commit 058201aa95
5 changed files with 23 additions and 1 deletions

View File

@@ -23,10 +23,21 @@ a {
width: 360px;
max-width: 100%;
border-radius: 42px;
transition: all $transition-time ease;
&:hover {
background-color: $c-tan;
color: $c-navy;
}
}
&.gold {
a {
background-color: $c-tan;
&:hover {
background-color: $c-navy;
}
}
}
}