Skip to content

Commit

Permalink
Merge pull request #496 from eyra/fix-radio-button
Browse files Browse the repository at this point in the history
Fixed radio button by replacing css ring with outline
  • Loading branch information
mellelieuwes authored Dec 3, 2023
2 parents 7f5074a + 7f9b5fc commit 9ae259c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/frameworks/pixel/components/radio_group.ex
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ defmodule Frameworks.Pixel.RadioGroup do
type="radio"
name="radio-group"
checked={item.active}
class="cursor-pointer appearance-none w-3 h-3 rounded-full ring-2 ring-offset-4 ring-grey3 checked:bg-primary checked:ring-primary"
class="cursor-pointer appearance-none w-3 h-3 rounded-full outline outline-2 outline-offset-4 outline-grey3 checked:bg-primary checked:outline-primary"
/>
<div class="text-label font-label text-grey1 select-none mt-1"><%= item.value %></div>
</label>
Expand Down

0 comments on commit 9ae259c

Please sign in to comment.