Skip to content

Commit 79ce400

Browse files
committed
fix: styling
1 parent 395fdc8 commit 79ce400

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const IdpGroupSyncForm = ({
121121
onChange={async (event) => {
122122
void form.setFieldValue("field", event.target.value);
123123
}}
124-
className="min-w-72 w-72"
124+
className="w-72"
125125
/>
126126
<div className="flex flex-row gap-2">
127127
<Input
@@ -133,7 +133,6 @@ export const IdpGroupSyncForm = ({
133133
className="min-w-40"
134134
/>
135135
<Button
136-
className="w-20"
137136
type="submit"
138137
disabled={form.isSubmitting || !form.dirty}
139138
onClick={(event) => {
@@ -177,7 +176,7 @@ export const IdpGroupSyncForm = ({
177176
<Input
178177
id={`${id}-idp-group-name`}
179178
value={idpGroupName}
180-
className="min-w-72 w-72"
179+
className="w-72"
181180
onChange={(event) => {
182181
setIdpGroupName(event.target.value);
183182
}}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ export const IdpRoleSyncForm = ({
8686
Role sync field
8787
</Label>
8888
<div className="flex flex-row items-center gap-5">
89-
<div className="flex flex-row gap-2 w-72">
89+
<div className="flex flex-row gap-2">
9090
<Input
9191
id={`${id}-sync-field`}
9292
value={form.values.field}
9393
onChange={async (event) => {
9494
void form.setFieldValue("field", event.target.value);
9595
}}
96-
className="min-w-72 w-72"
96+
className="w-72"
9797
/>
9898
<Button
9999
className="px-6"
@@ -121,7 +121,7 @@ export const IdpRoleSyncForm = ({
121121
<Input
122122
id={`${id}-idp-role-name`}
123123
value={idpRoleName}
124-
className="min-w-72 w-72"
124+
className="w-72"
125125
onChange={(event) => {
126126
setIdpRoleName(event.target.value);
127127
}}

0 commit comments

Comments
 (0)