Skip to content

Commit

Permalink
fix(createOrgForm): adjust icon spacing in create new organization mo…
Browse files Browse the repository at this point in the history
…dal (#2736)

Co-authored-by: use-tusk[bot] <144006087+use-tusk[bot]@users.noreply.github.com>
  • Loading branch information
use-tusk[bot] authored Oct 8, 2024
1 parent f7b37ab commit 327ad4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/components/templates/organization/createOrgForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const CreateOrgForm = (props: CreateOrgFormProps) => {
<RadioGroup.Label className="block text-sm font-medium leading-6 text-gray-900 dark:text-gray-100">
Choose an icon
</RadioGroup.Label>
<div className="mt-4 flex items-center justify-between px-8">
<div className="mt-4 grid grid-cols-5 gap-4">
{ORGANIZATION_ICONS.map((icon) => (
<RadioGroup.Option
key={icon.name}
Expand All @@ -159,7 +159,7 @@ const CreateOrgForm = (props: CreateOrgFormProps) => {
checked
? "ring-2 ring-offset-1 ring-sky-300 dark:ring-sky-700"
: "ring-1 ring-gray-200 dark:ring-gray-800",
"bg-white dark:bg-black rounded-md p-2"
"bg-white dark:bg-black rounded-md p-2 flex items-center justify-center"
)
}
>
Expand Down

0 comments on commit 327ad4f

Please sign in to comment.