Skip to content

Commit

Permalink
refactor(css): use css vars for fo footer bg line color
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Sep 28, 2022
1 parent 3b07cb6 commit f9f3d45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benefits/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
--footer-background-color: var(--dark-color);
--footer-link-color: #73b3e7;
--footer-link-hover-color: #9b74d7;
--footer-mobile-underline-color: var(--bs-white);
--hover-color: #2f4c65;
--error-color: #ea1010;
--error-color-rgb: 234, 16, 16;
Expand Down Expand Up @@ -600,7 +601,7 @@ footer.global-footer .footer-links a:active {
}

.global-footer ul.footer-links li:not(:last-child) {
border-bottom: 2px solid white;
border-bottom: 2px solid var(--footer-mobile-underline-color);
}

.global-footer ul.footer-links li a {
Expand Down

0 comments on commit f9f3d45

Please sign in to comment.