Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENG-1147] Fix icon spacing in the Create Organization modal #2736

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading