diff --git a/app/assets/stylesheets/components/_footer.scss b/app/assets/stylesheets/components/_footer.scss index fe1bb21e5f0..e00be9a86db 100644 --- a/app/assets/stylesheets/components/_footer.scss +++ b/app/assets/stylesheets/components/_footer.scss @@ -24,9 +24,11 @@ body { } a { + @include u-padding-y(1); text-decoration: none; @include at-media('tablet') { + @include u-padding-y(0); &, &:visited { color: color($theme-link-reverse-color); @@ -59,6 +61,12 @@ body { } .footer__links { - @include u-padding-y(1); + @include u-padding-x(1); display: flex; + flex-wrap: wrap; + + @include at-media('tablet') { + @include u-padding-y(1); + @include u-padding-x(0); + } }