From 2b9d96fcac4e6c7f97c8cecbe2df18d4ea710cb8 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Tue, 16 May 2023 17:07:08 +0200 Subject: [PATCH] css: mobile: Fix hiding of big logo in mobile layout MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Use the '#index' id to select the proper page as the body element doesn't have 'index' class. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- docs/css/mobile.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/css/mobile.css b/docs/css/mobile.css index 1a2ea6fcc3..43ca7ca482 100644 --- a/docs/css/mobile.css +++ b/docs/css/mobile.css @@ -20,7 +20,7 @@ #search form { padding: 5px; } - body.index h1 { + #index h1 { display: none; } #jumplinks { -- 2.47.2