From 2f88982e4550e734e9c291ba893bd0b4224100bf Mon Sep 17 00:00:00 2001 From: Derryk Boyd Date: Thu, 17 Oct 2019 04:13:02 -0600 Subject: [PATCH] fix: add spacing between profile picture and social icons (#37354) * fix: add spacing between profile picture and social icons * add additional spacing and move code to correct file --- client/src/components/profile/components/social-icons.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/src/components/profile/components/social-icons.css b/client/src/components/profile/components/social-icons.css index b508f539ec..1bdc1f6f7a 100644 --- a/client/src/components/profile/components/social-icons.css +++ b/client/src/components/profile/components/social-icons.css @@ -1,7 +1,11 @@ +.social-media-icons { + margin-top: 1.5em; +} + .social-media-icons > a { - margin: 0 10px 0 0; + margin: 0 1.5em 0 0; } .social-media-icons > a:last-child { - margin: 0; + margin: 0 0 1.5em 0; }