We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4134efc commit bea89c1Copy full SHA for bea89c1
components/src/hardware-sim/Labware/labwareInternals/LabwareWellLabels.tsx
@@ -65,12 +65,10 @@ const Labels = (props: {
65
key={wellName}
66
x={isLetterColumn ? firstWellXPosition : well.x}
67
y={isLetterColumn ? well.y : firstWellYPosition}
68
- style={{
69
- fontSize: '0.2rem', // LEGACY --fs-micro
70
- fontWeight: TYPOGRAPHY.fontWeightSemiBold,
71
- textAnchor: 'middle',
72
- dominantBaseline: isLetterColumn ? 'middle' : 'auto',
73
- }}
+ fontSize="0.2rem" // LEGACY --fs-micro
+ fontWeight={TYPOGRAPHY.fontWeightSemiBold}
+ textAnchor="middle"
+ dominantBaseline={isLetterColumn ? 'middle' : 'auto'}
74
fill={
75
highlightedWellLabels?.wells.includes(wellName) ?? false
76
? highlightColor
0 commit comments