From 5fe0f4255f89aaa2497070a41c7b2601e0fefc9f Mon Sep 17 00:00:00 2001 From: Enrico Date: Thu, 25 May 2023 19:45:11 +0200 Subject: [PATCH 1/3] remove flex-none class from header "flex: none" equals to flex-grow: 0 flex-shrink: 0 flex-basis: auto Why would you want to prevent shrinking in the header? This causes issue in mobiles or smaller screens. Just remove the class, omitting "flex" property equals to flex-grow: 0 flex-shrink: 1 flex-basis: auto --- partials/layout/header.hbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/partials/layout/header.hbs b/partials/layout/header.hbs index 33c5de6e..d788cd4a 100644 --- a/partials/layout/header.hbs +++ b/partials/layout/header.hbs @@ -1,7 +1,7 @@