Skip to content

Commit

Permalink
fix: radio buttons alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsojramos committed Jul 8, 2024
1 parent cd40d10 commit 7cdbfb3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/components/fields/RadioGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const RadioGroup: FC<IRadioGroup> = (props: IRadioGroup) => {
{props.options.map((item) => {
return (
<div
className="mt-1 flex"
className="mt-1 flex items-center"
key={`radio_item_${item.value.toLowerCase()}`}
>
<input
Expand Down
16 changes: 8 additions & 8 deletions src/components/fields/__snapshots__/RadioGroup.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/routes/__snapshots__/Settings.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7cdbfb3

Please sign in to comment.