File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
app/src/organisms/LabwarePositionCheck Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -360,7 +360,12 @@ export const TerseOffsetTable = (props: OffsetTableProps): JSX.Element => {
360
360
) : null }
361
361
</ TerseTableDatum >
362
362
< TerseTableDatum >
363
- < StyledText as = "p" > { labwareDisplayName } </ StyledText >
363
+ < StyledText
364
+ fontSize = { TYPOGRAPHY . fontSize20 }
365
+ lineHeight = { TYPOGRAPHY . lineHeight24 }
366
+ >
367
+ { labwareDisplayName }
368
+ </ StyledText >
364
369
</ TerseTableDatum >
365
370
< TerseTableDatum >
366
371
{ isEqual ( vector , IDENTITY_VECTOR ) ? (
@@ -370,14 +375,20 @@ export const TerseOffsetTable = (props: OffsetTableProps): JSX.Element => {
370
375
{ [ vector . x , vector . y , vector . z ] . map ( ( axis , index ) => (
371
376
< React . Fragment key = { index } >
372
377
< StyledText
373
- as = "p"
378
+ fontSize = { TYPOGRAPHY . fontSize20 }
379
+ lineHeight = { TYPOGRAPHY . lineHeight24 }
374
380
marginLeft = { index > 0 ? SPACING . spacing8 : 0 }
375
381
marginRight = { SPACING . spacing4 }
376
382
fontWeight = { TYPOGRAPHY . fontWeightSemiBold }
377
383
>
378
384
{ [ 'X' , 'Y' , 'Z' ] [ index ] }
379
385
</ StyledText >
380
- < StyledText as = "p" > { axis . toFixed ( 1 ) } </ StyledText >
386
+ < StyledText
387
+ fontSize = { TYPOGRAPHY . fontSize20 }
388
+ lineHeight = { TYPOGRAPHY . lineHeight24 }
389
+ >
390
+ { axis . toFixed ( 1 ) }
391
+ </ StyledText >
381
392
</ React . Fragment >
382
393
) ) }
383
394
</ Flex >
You can’t perform that action at this time.
0 commit comments