Skip to content

Commit df0937c

Browse files
committed
fix(app): ensure the odd floating lpc button doesn't clip the table
1 parent 9d1ae88 commit df0937c

File tree

1 file changed

+4
-2
lines changed
  • app/src/organisms/LabwareOffsetsTable

1 file changed

+4
-2
lines changed

app/src/organisms/LabwareOffsetsTable/index.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import {
77
ListAccordion,
88
StyledText,
99
RESPONSIVENESS,
10+
Flex,
11+
SPACING,
1012
} from '@opentrons/components'
1113

1214
import { selectAllLabwareInfoAndDefaultStatusSorted } from '/app/redux/protocol-runs'
@@ -36,7 +38,7 @@ export function LabwareOffsetsTable(
3638
}
3739

3840
return (
39-
<>
41+
<Flex marginBottom={SPACING.spacing80}>
4042
<ListTable headers={[t('labware_type'), t('total_offsets')]}>
4143
{labwareInfo.map(aLwInfo => (
4244
<ListAccordion
@@ -63,7 +65,7 @@ export function LabwareOffsetsTable(
6365
</ListAccordion>
6466
))}
6567
</ListTable>
66-
</>
68+
</Flex>
6769
)
6870
}
6971

0 commit comments

Comments
 (0)