Remove extra bottom padding in filters in the editor (#51012)

* Remove filter margins in the editor

* Add changefile(s) from automation for the following project(s): woocommerce-blocks

* Remove small space after + sign

---------

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Alba Rincón 2024-08-29 10:26:11 +02:00 committed by GitHub
parent 260409fcad
commit 0a1af26785
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 8 additions and 4 deletions

View File

@ -16,7 +16,6 @@
}
.wc-block-active-filters {
margin-bottom: $gap-large;
overflow: hidden;
.wc-block-active-filters__clear-all {

View File

@ -1,7 +1,6 @@
@import "../../../../../../packages/components/chip/style";
.wp-block-woocommerce-product-filter-active {
margin-bottom: $gap-large;
overflow: hidden;
.clear-all {

View File

@ -1,4 +1,6 @@
.wp-block-woocommerce-product-filter-rating {
display: grid;
.wc-block-components-product-rating {
margin-bottom: 0;
display: flex;

View File

@ -12,6 +12,8 @@
}
.wc-block-stock-filter {
display: grid;
&.is-loading {
@include placeholder();
margin-top: $gap;
@ -19,8 +21,6 @@
border-radius: 0;
}
margin-bottom: $gap-large;
.wc-block-stock-filter-list {
margin: 0;

View File

@ -0,0 +1,4 @@
Significance: minor
Type: fix
Remove extra bottom padding in filters in the editor.