Commit 92b04331 authored by yyip-dev's avatar yyip-dev Committed by GitHub

fix: adjust margin on icon/button on pool page (#5403)

Adjust margin on icon/button on pool page
parent 21e5208d
...@@ -304,7 +304,7 @@ export default function Pool() { ...@@ -304,7 +304,7 @@ export default function Pool() {
) : ( ) : (
<ErrorContainer> <ErrorContainer>
<ThemedText.DeprecatedBody color={theme.deprecated_text3} textAlign="center"> <ThemedText.DeprecatedBody color={theme.deprecated_text3} textAlign="center">
<InboxIcon strokeWidth={1} /> <InboxIcon strokeWidth={1} style={{ marginTop: '2em' }} />
<div> <div>
<Trans>Your active V3 liquidity positions will appear here.</Trans> <Trans>Your active V3 liquidity positions will appear here.</Trans>
</div> </div>
...@@ -324,7 +324,10 @@ export default function Pool() { ...@@ -324,7 +324,10 @@ export default function Pool() {
properties={{ received_swap_quote: false }} properties={{ received_swap_quote: false }}
element={ElementName.CONNECT_WALLET_BUTTON} element={ElementName.CONNECT_WALLET_BUTTON}
> >
<ButtonPrimary style={{ marginTop: '2em', padding: '8px 16px' }} onClick={toggleWalletModal}> <ButtonPrimary
style={{ marginTop: '2em', marginBottom: '2em', padding: '8px 16px' }}
onClick={toggleWalletModal}
>
<Trans>Connect a wallet</Trans> <Trans>Connect a wallet</Trans>
</ButtonPrimary> </ButtonPrimary>
</TraceEvent> </TraceEvent>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment