From c68ab07afa94e9dfce17de31236cce6aa358b294 Mon Sep 17 00:00:00 2001 From: Darken141 Date: Thu, 2 Mar 2023 09:51:58 +0100 Subject: [PATCH] fix link width --- .../support-section.component.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/components/support-section/support-section.component.tsx b/components/support-section/support-section.component.tsx index 598d4af..0176096 100644 --- a/components/support-section/support-section.component.tsx +++ b/components/support-section/support-section.component.tsx @@ -59,6 +59,7 @@ const SupportSection: React.FC = () => { talisman @@ -66,6 +67,7 @@ const SupportSection: React.FC = () => { polkadot @@ -73,6 +75,7 @@ const SupportSection: React.FC = () => { subwallet @@ -80,6 +83,7 @@ const SupportSection: React.FC = () => { enkrypt @@ -93,6 +97,7 @@ const SupportSection: React.FC = () => { Nova @@ -203,12 +208,23 @@ const PartnersDirectory = styled.div` width: 100%; height: 4.2rem; + a { + display: block; + width: 4.2rem; + } + @media all and (min-width: ${({ theme }) => theme.breakpoints.sm}) { justify-content: flex-start; height: 3.2rem; + a { + width: 3.2rem; + } @media all and (min-width: ${({ theme }) => theme.breakpoints.lg}) { height: 6rem; + a { + width: 6.2rem; + } } } `