Skip to content

Commit

Permalink
refactor(css): use variables
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Jan 19, 2024
1 parent cd64efc commit ed5d213
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions benefits/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,13 @@ main {
}

#skip-to-content:focus span {
font-size: var(--font-size-18px);
line-height: 150%;
letter-spacing: 0.9px;
border: 2px solid var(--focus-color);
border-radius: 4px;
font-weight: 700;
padding: 0 4px;
border-radius: calc(4rem / 16);
font-size: var(--bs-body-font-size);
font-weight: var(--bold-font-weight);
letter-spacing: var(--letter-spacing-5);
line-height: var(--bs-body-line-height);
padding: 0 calc(4rem / 16);
}

/* Footer */
Expand Down

0 comments on commit ed5d213

Please sign in to comment.