From 717fde3a34d2bfe1cfa46af1b7bd63e818a2fd31 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Sat, 25 May 2024 11:52:56 +0800 Subject: [PATCH] hide the container of the current object name in the navigation bar in smaller sizes --- src/styles/layouts/preferences.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/styles/layouts/preferences.css b/src/styles/layouts/preferences.css index 8235bee..943413f 100644 --- a/src/styles/layouts/preferences.css +++ b/src/styles/layouts/preferences.css @@ -1,13 +1,13 @@ /* nav [data-result-content="*"] { - + }*/ article[data-result-linked="filters"] > h2 { display: none; } -a[data-result-linked="filters"] > * { - display: none; +nav a[data-result-linked="filters"] { + display: none !important; } @media only screen and (max-width: 992px) { @@ -16,7 +16,7 @@ a[data-result-linked="filters"] > * { @media only screen and (min-width: 992px) { - a[data-result-linked="filters"] > * { - display: block; + nav a[data-result-linked="filters"] { + display: block !important; } -} \ No newline at end of file +}