Skip to content

Commit

Permalink
fix(css): remify last border-radius
Browse files Browse the repository at this point in the history
  • Loading branch information
machikoyasuda committed Aug 15, 2023
1 parent 139e9a3 commit c5b2e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benefits/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ a:not(.btn):not(.card) {
text-decoration: underline;
text-decoration-style: solid;
font-weight: var(--bold-font-weight);
border-radius: 2px; /* for the focus ring */
border-radius: calc(2rem / 16); /* for the focus ring */
}

a:hover:not(.btn) {
Expand Down Expand Up @@ -755,7 +755,7 @@ a.card:focus-visible {
opacity: 1;
padding: 0;
margin: -1px -1px -1px auto;
border-radius: 2px;
border-radius: calc(2rem / 16);
background-position: center;
background-repeat: no-repeat;
background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 2.01429L17.9857 0L10 7.98571L2.01429 0L0 2.01429L7.98571 10L0 17.9857L2.01429 20L10 12.0143L17.9857 20L20 17.9857L12.0143 10L20 2.01429Z" fill="%23323A45"/></svg>');
Expand Down

0 comments on commit c5b2e1a

Please sign in to comment.