From 74d82cad0e217e4cac2f2cd48d0e81fd83f16e5a Mon Sep 17 00:00:00 2001 From: FloatingGhost Date: Wed, 3 Aug 2022 16:38:25 +0100 Subject: [PATCH] hide timeline title on mobile --- src/components/timeline_menu/timeline_menu.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/timeline_menu/timeline_menu.vue b/src/components/timeline_menu/timeline_menu.vue index 946fe47e..d7d022af 100644 --- a/src/components/timeline_menu/timeline_menu.vue +++ b/src/components/timeline_menu/timeline_menu.vue @@ -84,4 +84,10 @@ margin-left: 1em; color: var(--selectedMenuText, $fallback--text); --lightText: var(--selectedMenuLightText, $fallback--lightText); } + +@media all and (max-width: 900px) { + .timeline-title { + display: none; + } +}