Skip to content

Commit

Permalink
fix(core/radio-button): fix alignment of checked indicator (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuke-ellington committed Feb 6, 2024
1 parent 4a95af8 commit 7698c64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/scss/components/_radiobuttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@

& + label:after {
content: '';
width: 0.625rem;
height: 0.625rem;
width: $small-space;
height: $small-space;
display: block;
background-color: var(--theme-radiobtn-checked--color);
border-radius: 100%;
position: absolute;
top: 0.4125rem;
left: 0.3125rem;
top: 0.5rem;
left: 0.375rem;
}

&:hover + label:before {
Expand Down

0 comments on commit 7698c64

Please sign in to comment.