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:
parent
260409fcad
commit
0a1af26785
|
@ -16,7 +16,6 @@
|
|||
}
|
||||
|
||||
.wc-block-active-filters {
|
||||
margin-bottom: $gap-large;
|
||||
overflow: hidden;
|
||||
|
||||
.wc-block-active-filters__clear-all {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
@import "../../../../../../packages/components/chip/style";
|
||||
|
||||
.wp-block-woocommerce-product-filter-active {
|
||||
margin-bottom: $gap-large;
|
||||
overflow: hidden;
|
||||
|
||||
.clear-all {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
.wp-block-woocommerce-product-filter-rating {
|
||||
display: grid;
|
||||
|
||||
.wc-block-components-product-rating {
|
||||
margin-bottom: 0;
|
||||
display: flex;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: fix
|
||||
|
||||
Remove extra bottom padding in filters in the editor.
|
Loading…
Reference in New Issue