From 2583b9c3bbbf9aafbaf8068427791dcd8cda3be3 Mon Sep 17 00:00:00 2001 From: tate Date: Mon, 11 Sep 2023 09:41:04 +1000 Subject: [PATCH] NameListView styling --- .../@molecules/NameListView/NameListView.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/components/@molecules/NameListView/NameListView.tsx b/src/components/@molecules/NameListView/NameListView.tsx index 33558f457..a77d3dbf9 100644 --- a/src/components/@molecules/NameListView/NameListView.tsx +++ b/src/components/@molecules/NameListView/NameListView.tsx @@ -43,6 +43,16 @@ const TabWrapperWithButtons = styled(TabWrapper)( `, ) +const Footer = styled.div( + ({ theme }) => css` + display: flex; + align-items: center; + justify-content: center; + height: ${theme.space['8']}; + border-top: 1px solid ${theme.colors.border}; + `, +) + type NameListViewProps = { address: Address | undefined isSelf: boolean @@ -209,6 +219,7 @@ export const NameListView = ({ address, isSelf, setError, setLoading }: NameList )}
{InnerContent}
+