Skip to content

Commit 7bef016

Browse files
committed
fix: fix styles for MultiSelectCombobox
1 parent bd417e9 commit 7bef016

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

site/src/components/MultiSelectCombobox/MultiSelectCombobox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ export const MultiSelectCombobox = forwardRef<
454454
{/* biome-ignore lint/a11y/useKeyWithClickEvents: onKeyDown is not needed here */}
455455
<div
456456
className={cn(
457-
`*:min-h-9 rounded-md border border-solid border-border text-sm pr-3
457+
`min-h-10 rounded-md border border-solid border-border text-sm pr-3
458458
focus-within:ring-2 focus-within:ring-content-link`,
459459
{
460460
"pl-3 py-1": selected.length !== 0,
@@ -568,7 +568,7 @@ export const MultiSelectCombobox = forwardRef<
568568
>
569569
<X className="h-5 w-5" />
570570
</button>
571-
<ChevronDown className="h-6 w-6 cursor-pointer text-content-secondary hover:text-content-primary" />
571+
<ChevronDown className="h-5 w-5 cursor-pointer text-content-secondary hover:text-content-primary" />
572572
</div>
573573
</div>
574574
</div>

site/src/pages/DeploymentSettingsPage/IdpOrgSyncPage/IdpOrgSyncPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export const IdpOrgSyncPageView: FC<IdpSyncPageViewProps> = ({
201201
}
202202
/>
203203
</div>
204-
<div className="grid items-center gap-1">
204+
<div className="grid grid-rows-[28px_auto]">
205205
&nbsp;
206206
<Button
207207
className="mb-px"

site/src/pages/ManagementSettingsPage/IdpSyncPage/IdpSyncPageView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ const IdpGroupSyncForm = ({
404404
}
405405
/>
406406
</div>
407-
<div className="grid items-center gap-1">
407+
<div className="grid grid-rows-[28px_auto]">
408408
&nbsp;
409409
<Button
410410
className="mb-px"
@@ -607,7 +607,7 @@ const IdpRoleSyncForm = ({
607607
}
608608
/>
609609
</div>
610-
<div className="grid items-center gap-1">
610+
<div className="grid grid-rows-[28px_auto]">
611611
&nbsp;
612612
<Button
613613
className="mb-px"

0 commit comments

Comments
 (0)