From 8a69c73fcdc45874f11674b9416cc657450eec58 Mon Sep 17 00:00:00 2001 From: Anthony Geourjon <anthony.geourjon@tetras-libre.fr> Date: Tue, 14 Jan 2025 19:08:07 +0100 Subject: [PATCH] Hide sandwitch button when display is too large --- macao/assets/_custom.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/macao/assets/_custom.scss b/macao/assets/_custom.scss index de24336..b2a8a4b 100644 --- a/macao/assets/_custom.scss +++ b/macao/assets/_custom.scss @@ -104,6 +104,13 @@ a.active { padding: 5px; } +// Hide element when width is less than 900px +@media (min-width: 900px) { + .book-icon { + display: none; + } +} + // *********************************** // Comment on page // *********************************** -- GitLab