Skip to content

Commit

Permalink
🐛 (llm) layout issue on my ledger screen (#8509)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasWerey authored Nov 27, 2024
1 parent 0fe9d07 commit 9894ecc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/hip-crabs-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": minor
---

Fix layout issue on my ledger screen
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ export default function SelectDevice({
) : (
<Flex flex={1}>
<ScrollContainer
mb={4}
contentContainerStyle={{
flexGrow: 1,
justifyContent: "space-between",
Expand Down Expand Up @@ -425,7 +424,7 @@ export default function SelectDevice({
{children}
</Flex>
</Flex>
<Flex alignItems="center" mt={10}>
<Flex alignItems="center" my={8}>
<BuyDeviceCTA />
</Flex>
</ScrollContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const ChooseDevice: React.FC<ChooseDeviceProps> = ({ isFocused }) => {
</Text>
</Flex>
) : null}
<Flex flex={1} mb={8}>
<Flex flex={1}>
<SelectDevice2
onSelect={onSelectDevice}
stopBleScanning={!!device}
Expand Down

0 comments on commit 9894ecc

Please sign in to comment.