Skip to content

Commit

Permalink
Merge pull request #5425 from mozilla/mntor-3300
Browse files Browse the repository at this point in the history
  • Loading branch information
flozia authored Dec 17, 2024
2 parents 34f53a5 + a6d6b70 commit 97bfd16
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export function AutomaticRemoveView(props: Props) {
)}
</span>
<Button
variant="primary"
variant="secondary"
/* c8 ignore start */
onPress={() => {
selectedPlanIsYearly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,18 @@
font: $text-title-sm;
font-weight: 500;
}

// Invert color for the plan selection CTA to increase visibility
// against the purple background.
& > a {
color: $color-white;
box-shadow: inset 0 0 0 2px $color-white;

&:hover {
background-color: $color-white;
color: $color-purple-70;
}
}
}
}

Expand Down

0 comments on commit 97bfd16

Please sign in to comment.