From 6027e7ba3d32e26007ec11df55b33fb71e0980b8 Mon Sep 17 00:00:00 2001 From: Kris Date: Wed, 28 Nov 2018 13:26:12 -0500 Subject: [PATCH] FIX: Restrict logo width for small screens --- app/assets/stylesheets/mobile/header.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mobile/header.scss b/app/assets/stylesheets/mobile/header.scss index 7904889dbcf..5268e25dd05 100644 --- a/app/assets/stylesheets/mobile/header.scss +++ b/app/assets/stylesheets/mobile/header.scss @@ -15,10 +15,12 @@ animation: fadein 0.5s; a { display: block; + width: 100%; } } #site-logo { - height: 2.4em; + max-height: 2.4em; + max-width: 100%; } #site-text-logo { margin: 0;