From d3b6310d841e9b53fe5f476833ad0e1cabc4bb12 Mon Sep 17 00:00:00 2001 From: Jackson Goode Date: Tue, 17 Sep 2024 19:01:24 -0700 Subject: [PATCH] Hide on mobile --- styles/notion.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/styles/notion.css b/styles/notion.css index 761f002c79..68ea8e7211 100644 --- a/styles/notion.css +++ b/styles/notion.css @@ -424,3 +424,10 @@ .notion-nav-header-title.show { opacity: 1; } + +/* Hide the title on mobile devices or narrow screens */ +@media (max-width: 768px) { + .notion-nav-header-title { + display: none; + } +}