From 8d8f60d8db9caf467895f7c291b20b8c73b2cfd0 Mon Sep 17 00:00:00 2001 From: Leszek Date: Tue, 19 Nov 2024 15:04:41 -0500 Subject: [PATCH] fix header disappearing on small screens --- jsapp/scss/components/_kobo.navigation.scss | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/jsapp/scss/components/_kobo.navigation.scss b/jsapp/scss/components/_kobo.navigation.scss index bd14abc82b..ba7fb22344 100644 --- a/jsapp/scss/components/_kobo.navigation.scss +++ b/jsapp/scss/components/_kobo.navigation.scss @@ -222,9 +222,8 @@ // Form title + desc in header, editable -// On smaller screens we hide both of them -.main-header .main-header__icon, -.main-header { +// On smaller screens we hide the icon +.main-header .main-header__icon { display: none; } @@ -287,8 +286,7 @@ } @include breakpoints.breakpoint(mediumAndUp) { - .main-header .main-header__icon, - .main-header { + .main-header .main-header__icon { display: initial; }