From c2df08f68e8cb1247226aecddfed7b5850ad98bd Mon Sep 17 00:00:00 2001 From: James Collins Date: Thu, 26 Jan 2023 12:16:51 +1000 Subject: [PATCH] reduce spacing of social icons < 400px --- resources/js/components/SMFooter.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/js/components/SMFooter.vue b/resources/js/components/SMFooter.vue index 4b972c0..1111c2e 100644 --- a/resources/js/components/SMFooter.vue +++ b/resources/js/components/SMFooter.vue @@ -184,4 +184,11 @@ } } } + +@media only screen and (max-width: 400px) { + .footer ul li { + margin-left: 0.5rem; + margin-right: 0.5rem; + } +}