@@ -136,21 +136,21 @@ export default function SchemaTableItem({
136
136
} ;
137
137
138
138
return (
139
- < tr className = "text-sm my-3" >
139
+ < tr className = "text-xs my-3" >
140
140
{ ( ! checkTypes || ! connection || ! schema ) && (
141
141
< >
142
142
{ ! connection && (
143
143
< td className = "content-start pt-2 max-w-72 min-w-50 whitespace-normal break-all" >
144
144
< Button
145
- className = "ml-4 !px-0 underline cursor-pointer text-sm py-0 text-start "
145
+ className = "ml-4 !px-0 underline cursor-pointer text-xs py-0 text-start "
146
146
label = { item . connection_name }
147
147
onClick = { ( ) => goToConnection ( item ) }
148
148
/>
149
149
</ td >
150
150
) }
151
151
< td className = "content-start pt-2 max-w-72 min-w-50 whitespace-normal break-all" >
152
152
< Button
153
- className = "ml-4 !px-0 underline cursor-pointer text-sm py-0 text-start"
153
+ className = "ml-4 !px-0 underline cursor-pointer text-xs py-0 text-start"
154
154
label = { item . schema }
155
155
onClick = { ( ) => goToSchema ( item ) }
156
156
/>
@@ -159,22 +159,22 @@ export default function SchemaTableItem({
159
159
) }
160
160
< td className = "content-start pt-2 max-w-72 min-w-50 whitespace-normal break-all" >
161
161
< Button
162
- className = "ml-4 !px-0 underline cursor-pointer text-sm py-0 text-start"
162
+ className = "ml-4 !px-0 underline cursor-pointer text-xs py-0 text-start"
163
163
label = { item . table ?. table_name }
164
164
onClick = { ( ) => goToTable ( item , checkTypes ) }
165
165
/>
166
166
</ td >
167
167
< td className = "content-start pt-2 max-w-72 min-w-50 whitespace-normal break-all" >
168
168
< Button
169
- className = "ml-4 !px-0 underline cursor-pointer text-sm py-0 text-start"
169
+ className = "ml-4 !px-0 underline cursor-pointer text-xs py-0 text-start"
170
170
label = { item . column_name }
171
171
onClick = { ( ) => goToColumn ( item , checkTypes ) }
172
172
/>
173
173
</ td > { ' ' }
174
- < td className = "px-4 text-sm content-start pt-2" >
174
+ < td className = "px-4 text-xs content-start pt-2" >
175
175
{ prepareString ( item . type_snapshot ?. column_type , 15 ) }
176
176
</ td >
177
- < td className = "px-4 text-sm content-start pt-2" >
177
+ < td className = "px-4 text-xs content-start pt-2" >
178
178
{ getLabelsOverview ( item ?. labels ?? [ ] ) }
179
179
</ td >
180
180
{ item ?. data_quality_status ?. dimensions ? (
@@ -184,7 +184,7 @@ export default function SchemaTableItem({
184
184
dimensionKeys = { dimensionKeys }
185
185
/>
186
186
< td >
187
- < div className = "flex gap-x-2 items-center justify-center mr -3" >
187
+ < div className = "flex gap-x-2 items-center justify-center mx -3" >
188
188
< SvgIcon
189
189
name = "data_sources"
190
190
className = "w-5 h-5"
0 commit comments