Skip to content

Commit

Permalink
Reverted spacing for radio.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
APerson09 committed Nov 11, 2024
1 parent 9ee72d6 commit 575b117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/global/inputs/radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Radio = ({ meta }: { meta: RadioInput }) => {
{options.map((option) => (
<div
key={option}
className={`flex items-center space-x-3 rounded-sm border py-3 pl-3 pr-3 hover:bg-starlight-blue hover:text-white ${selected === String(option) ? "bg-starlight-blue text-white" : "bg-white"}`}
className={`flex items-center space-x-2 rounded-sm border py-1 pl-2 pr-4 hover:bg-starlight-blue hover:text-white ${selected === String(option) ? "bg-starlight-blue text-white" : "bg-white"}`}
onClick={() => setSelected(String(option))}
>
<RadioGroupItem
Expand Down

0 comments on commit 575b117

Please sign in to comment.