From a37672939fd6eddd6197ae9f173652b5c807ece5 Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sun, 7 Feb 2016 09:42:07 -0500 Subject: [PATCH] Fix top bar width on Android when page overflows horizontally --- assets/stylesheets/components/_mobile.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/stylesheets/components/_mobile.scss b/assets/stylesheets/components/_mobile.scss index 6fbab0f2..41f05101 100644 --- a/assets/stylesheets/components/_mobile.scss +++ b/assets/stylesheets/components/_mobile.scss @@ -28,7 +28,10 @@ // Header - ._header { position: fixed; } + ._header { + position: fixed; + max-width: 100vw; + } ._logo, ._nav { display: none; } ._home-link, ._menu-link { display: block; }