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 = () => {
@@ -66,6 +67,7 @@ const SupportSection: React.FC = () => {
@@ -73,6 +75,7 @@ const SupportSection: React.FC = () => {
@@ -80,6 +83,7 @@ const SupportSection: React.FC = () => {
@@ -93,6 +97,7 @@ const SupportSection: React.FC = () => {
@@ -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;
+ }
}
}
`