Fix pills in the Filter by Attribute block dropdown overlapping with the chevron (second attempt) (https://github.com/woocommerce/woocommerce-blocks/pull/7112)

This commit is contained in:
Albert Juhé Lluveras 2022-09-13 09:31:51 +02:00 committed by Luigi
parent 763d921d83
commit 27e8dcbebb
1 changed files with 5 additions and 1 deletions

View File

@ -110,8 +110,12 @@
}
}
}
.is-single .wc-blocks-components-form-token-field-wrapper .components-form-token-field__input-container {
.wc-blocks-components-form-token-field-wrapper:not(.single-selection) .components-form-token-field__input-container {
width: calc(100% - 50px);
.components-form-token-field__suggestions-list {
width: calc(100% + 50px);
}
}
}