Skip to content

Commit

Permalink
fix: Increase visibility for the plan selection button
Browse files Browse the repository at this point in the history
  • Loading branch information
flozia committed Dec 17, 2024
1 parent 34f53a5 commit a6d6b70
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 a6d6b70

Please sign in to comment.