Skip to content

Commit

Permalink
lel wtf (#6166)
Browse files Browse the repository at this point in the history
  • Loading branch information
walmat authored and greg-schrammel committed Oct 16, 2024
1 parent f1a4544 commit 78d9d96
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/screens/points/content/PointsContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -747,16 +747,16 @@ export function PointsContent() {
</Inset>
{!shouldDisplayError ? (
<Inset horizontal="20px" top="24px">
<Stack space="28px">
<Stack space="20px">
<Box gap={28}>
<Box gap={20}>
<Text color="label" size="20pt" style={{ marginLeft: 4 }} weight="heavy">
{i18n.t(i18n.l.points.points.my_points)}
</Text>
<Box flexDirection="row" alignItems="center" paddingLeft="4px">
{canDisplayTotalPoints ? <RainbowText totalPointsString={totalPointsString} /> : <Skeleton height={31} width={200} />}
</Box>
</Stack>
<Box gap={24}>
</Box>
<Box width="full" gap={24}>
{!!cardIds.length && !isReadOnlyWallet && <RemoteCardCarousel key="remote-cards" />}
<InfoCards points={points} />
</Box>
Expand Down Expand Up @@ -877,7 +877,7 @@ export function PointsContent() {
<Separator color={isDarkMode ? 'separatorSecondary' : 'separatorTertiary'} thickness={1} />
</>
)}
<Stack space="20px">
<Box gap={20}>
<Inset left="4px">
<Text color="label" size="20pt" weight="heavy">
{i18n.t(i18n.l.points.points.leaderboard)}
Expand Down Expand Up @@ -944,8 +944,8 @@ export function PointsContent() {
) : (
<Skeleton height={400} width={deviceWidth - 40} />
)}
</Stack>
</Stack>
</Box>
</Box>
</Inset>
) : (
<Box alignItems="center" justifyContent="center" height="full" width="full">
Expand Down

0 comments on commit 78d9d96

Please sign in to comment.