From e88a18bdf70ce719aa98f0a9e29da1dad5856082 Mon Sep 17 00:00:00 2001
From: Pete Watters <2938440+pete-watters@users.noreply.github.com>
Date: Wed, 11 Oct 2023 09:01:08 +0100
Subject: [PATCH] fix: update collectible header font and align icon, closes
#4290
---
.../components/collectibes.layout.tsx | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/app/features/collectibles/components/collectibes.layout.tsx b/src/app/features/collectibles/components/collectibes.layout.tsx
index 620b588ea52..63f6c4303d8 100644
--- a/src/app/features/collectibles/components/collectibes.layout.tsx
+++ b/src/app/features/collectibles/components/collectibes.layout.tsx
@@ -1,8 +1,9 @@
-import { Flex, Grid, Spinner, color } from '@stacks/ui';
+import { Spinner } from '@stacks/ui';
+import { Flex, Grid, HStack, styled } from 'leather-styles/jsx';
+import { token } from 'leather-styles/tokens';
import { RefreshIcon } from '@app/components/icons/refresh-icon';
import { LoadingSpinner } from '@app/components/loading-spinner';
-import { Caption } from '@app/components/typography';
interface CollectiblesLayoutProps {
title: string;
@@ -17,20 +18,20 @@ export function CollectiblesLayout(props: CollectiblesLayoutProps) {
return (
<>
-
- {title}
+
+ {title}
{isLoading ? (
-
+
) : (
onRefresh()} />
)}
-
+
{subHeader}