From b7a8bbe890a3c12c805f3b4d8ac1caaf2edbe6ba Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Mon, 29 Apr 2024 12:49:18 +0500 Subject: [PATCH] fix weird font weight and padding on nav submenu --- style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/style.css b/style.css index da912c7..3e88498 100644 --- a/style.css +++ b/style.css @@ -19,6 +19,12 @@ Version: 0.1 .wp-block-navigation .wp-block-navigation-item:focus-visible { background: var(--wp--preset--color--secondary); } + + /* fix weird padding and font weight on header nav dropdown items */ + ul.wp-block-navigation__submenu-container.has-background { + padding: 0; + font-weight: 400; + } } @media screen and (max-width: 786px) {