File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
site/src/pages/ManagementSettingsPage/IdpSyncPage Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -134,16 +134,9 @@ interface TableRowCountProps {
134
134
const TableRowCount : FC < TableRowCountProps > = ( { count, type } ) => {
135
135
return (
136
136
< div
137
- css = { ( theme ) => ( {
138
- margin : 0 ,
139
- fontSize : 13 ,
140
- color : theme . palette . text . secondary ,
141
- "& strong" : {
142
- color : theme . palette . text . primary ,
143
- } ,
144
- } ) }
137
+ className = "text-content-secondary text-xs"
145
138
>
146
- Showing < strong > { count } </ strong > { type }
139
+ Showing < strong className = "text-content-primary" > { count } </ strong > { type }
147
140
</ div >
148
141
) ;
149
142
} ;
@@ -434,7 +427,7 @@ const IdpGroupSyncForm = ({
434
427
</ div >
435
428
436
429
< div className = "flex gap-12" >
437
- < div className = "flex flex-col w-full" >
430
+ < div className = "flex flex-col w-full gap-2 " >
438
431
< IdpMappingTable type = "Group" isEmpty = { groupMappingCount === 0 } >
439
432
{ groupSyncSettings ?. mapping &&
440
433
Object . entries ( groupSyncSettings . mapping )
@@ -635,7 +628,7 @@ const IdpRoleSyncForm = ({
635
628
</ Button >
636
629
</ div >
637
630
</ div >
638
- < div >
631
+ < div className = "flex flex-col gap-2" >
639
632
< IdpMappingTable type = "Role" isEmpty = { roleMappingCount === 0 } >
640
633
{ roleSyncSettings ?. mapping &&
641
634
Object . entries ( roleSyncSettings . mapping )
You can’t perform that action at this time.
0 commit comments