From d0865e4d6e111f427bec14305350ddb7828ff5f1 Mon Sep 17 00:00:00 2001
From: MadMaurice <madmaurice@zom.bi>
Date: Thu, 9 Jan 2020 21:26:13 +0100
Subject: [PATCH] Make navigation scrollable when browser too narrow

This adds scrollbars to the navigation when the browser is too narrow but too
wide for the mobile version of the menu. This prevents the navigation from
wrapping around and messing up the design.
---
 assets/css/index.css | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/assets/css/index.css b/assets/css/index.css
index b62b664..f7737fb 100644
--- a/assets/css/index.css
+++ b/assets/css/index.css
@@ -59,6 +59,8 @@ body {
     margin: 0 auto;
     bottom: 0;
     width: 100%;
+    white-space: nowrap;
+    overflow-x: auto;
 }
 
 .header-subnav li {