Skip to content

Commit

Permalink
Fix: Button uses primary-color for background (#1639)
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda authored Aug 11, 2023
2 parents 9c716ae + 24950e6 commit 457f22a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions benefits/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,8 @@ footer .footer-links li a.footer-link:visited {
}

.btn.btn-lg.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
border-width: 2px;
font-weight: var(--medium-font-weight);
font-size: var(--font-size-20px);
Expand All @@ -381,6 +383,11 @@ footer .footer-links li a.footer-link:visited {
padding: var(--primary-button-padding);
}

.btn.btn-lg.btn-primary:hover {
background-color: var(--hover-color);
border-color: var(--hover-color);
}

.btn.btn-lg.btn-primary:focus,
.btn.btn-lg.btn-primary:focus-visible,
.btn-outline-dark:focus,
Expand Down

0 comments on commit 457f22a

Please sign in to comment.