-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support(UI): LLM - iOS/Android - Market General Layout polish (#1335)
* first part polishing 💄 * polishing Part 2
- Loading branch information
1 parent
8438e77
commit c356580
Showing
6 changed files
with
67 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"live-mobile": patch | ||
--- | ||
|
||
iOS/Android - Market General Layout polish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
apps/ledger-live-mobile/src/screens/Market/EmptyStarredCoins.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Flex, Text, Icon } from "@ledgerhq/native-ui"; | ||
import React from "react"; | ||
import { useTranslation } from "react-i18next"; | ||
|
||
export default function EmptyStarredCoins() { | ||
const { t } = useTranslation(); | ||
return ( | ||
<Flex flex={1} flexDirection="column" alignItems="stretch" p="4" mt={70}> | ||
<Flex alignItems="center"> | ||
<Icon name="Star" color="neutral.c100" size={120} /> | ||
</Flex> | ||
<Text textAlign="center" variant="h2" my={3}> | ||
{t("market.warnings.starred.title")} | ||
</Text> | ||
<Text textAlign="center" variant="body" color="neutral.c70"> | ||
{t("market.warnings.starred.desc")} | ||
</Text> | ||
</Flex> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters