From 94d746f4d7895528ba3ed14fb4f9b59b3b86be78 Mon Sep 17 00:00:00 2001 From: ren <18050944+renintw@users.noreply.github.com> Date: Fri, 13 Oct 2023 01:07:39 +0900 Subject: [PATCH] Query Filters: Fix overflow CSS style In showcase, the "Query Filters" only overflow horizontally, so overflow-x is used in place of overflow-y. --- .../wp-content/themes/wporg-showcase-2022/src/style/style.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/wp-content/themes/wporg-showcase-2022/src/style/style.scss b/source/wp-content/themes/wporg-showcase-2022/src/style/style.scss index 8533a6ba..581095fc 100644 --- a/source/wp-content/themes/wporg-showcase-2022/src/style/style.scss +++ b/source/wp-content/themes/wporg-showcase-2022/src/style/style.scss @@ -195,7 +195,7 @@ a:where(:not(.wp-element-button)):focus-visible { /* Scroll the filter bar smaller screens. */ @media (max-width: 889px) { .wporg-query-filters { - overflow-y: scroll; + overflow-x: scroll; max-width: 100%; } }