From 12b49167b890357e80e8b80d29fbbf7c3a1cd5ac Mon Sep 17 00:00:00 2001 From: ajitsinghkaler Date: Wed, 5 Feb 2020 00:28:15 +0530 Subject: [PATCH] fix(docs-infra): size footer links to appropriate size for SEO (#35098) Footer links did not have enough space between them, so lighthouse was reporting that tap targets are not appropriately sized. Added the required 8px space between links. Also updated the margin of group headers accordingly. Fixes #34901 PR Close #35098 --- aio/src/styles/1-layouts/_footer.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/src/styles/1-layouts/_footer.scss b/aio/src/styles/1-layouts/_footer.scss index fb25524c2f..538c78d15c 100644 --- a/aio/src/styles/1-layouts/_footer.scss +++ b/aio/src/styles/1-layouts/_footer.scss @@ -40,7 +40,7 @@ footer { @include font-size(16); text-transform: uppercase; font-weight: 400; - margin: 0 0 16px; + margin: 8px 0 12px; color: $white; } p { @@ -69,7 +69,7 @@ footer { li { list-style-type: none; - padding: 0px; + padding: 4px 0; text-align: left; } }