Skip to content

Commit

Permalink
fix: broader underlining
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinBuyck committed Oct 25, 2023
1 parent 32c4efa commit 032dc11
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
@media (max-width: $screen-lg) {
flex-direction: column;
}
a {
text-decoration: underline;
color: var(--bloom-color-primary-lighter);

&:hover {
color: var(--bloom-color-primary-light);
}
}
}

.doorway-linkable-card-group_nav {
Expand All @@ -15,14 +23,3 @@
padding: var(--doorway-standard-spacing);
}
}

.doorway-linkable-card-group_main {
a {
text-decoration: underline;
color: var(--bloom-color-primary-lighter);

&:hover {
color: var(--bloom-color-primary-light);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const DoorwayLinkableCardGroup = (props: DoorwayLinkableCardGroupProps) => {
<div className="doorway-linkable-card-group_nav font-serif mt-4">
<Card className="border-0 space-y-5">{getLinks()}</Card>
</div>
<div className="doorway-linkable-card-group_main">
<div>
{props.children}
{props.cards}
</div>
Expand Down

0 comments on commit 032dc11

Please sign in to comment.