Skip to content

Commit

Permalink
Query Filters: Fix overflow CSS style
Browse files Browse the repository at this point in the history
In showcase, the "Query Filters" only overflow horizontally, so overflow-x is used in place of overflow-y.
  • Loading branch information
renintw committed Oct 16, 2023
1 parent 6ea8b6e commit 94d746f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
}
}
Expand Down

0 comments on commit 94d746f

Please sign in to comment.