From 5eae88b553bd0a3a63e31ac56ddfc816800eec7e Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Tue, 8 Jun 2021 01:18:52 +0800 Subject: [PATCH] Fix footer in master Since lbry.tv is going away, I tried not to touch the css file much so that the merge into `odysee` won't affect it. The side effect is that the links are now white instead of the regular link color. --- ui/scss/component/_footer.scss | 4 ++++ web/component/footer.jsx | 21 ++++++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/ui/scss/component/_footer.scss b/ui/scss/component/_footer.scss index 57b2b3a5c..2037b9ae7 100644 --- a/ui/scss/component/_footer.scss +++ b/ui/scss/component/_footer.scss @@ -47,6 +47,10 @@ .footer__section { margin-left: var(--spacing-xl); + &:not(:last-child) { + padding-right: var(--spacing-xl); + } + @media (max-width: $breakpoint-small) { margin-left: var(--spacing-l); } diff --git a/web/component/footer.jsx b/web/component/footer.jsx index 37ce1e645..9c23300c4 100644 --- a/web/component/footer.jsx +++ b/web/component/footer.jsx @@ -80,23 +80,22 @@ const sections = [ export default function Footer() { return ( ); }