From 339c3c7ecabdf2a3c9d190cdebf3e012ee80bdb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 6 May 2021 19:50:45 +0200 Subject: [PATCH] Remove unnecessary margins in social links On small screens the list is on its own line so it doesn't need a margin, while on medium/large screens the padding of its parent element makes the margin unnecessary as well. --- app/assets/stylesheets/layout/social.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/layout/social.scss b/app/assets/stylesheets/layout/social.scss index a0b980bc0..5590d633e 100644 --- a/app/assets/stylesheets/layout/social.scss +++ b/app/assets/stylesheets/layout/social.scss @@ -6,6 +6,10 @@ width: 1 * 100% / 3; } + ul { + margin: 0; + } + li { display: inline-block; }