From 10252ff8dfabd2814721ff6cfecdc6a70a47af46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maikel=20David=20P=C3=A9rez=20G=C3=B3mez?= Date: Thu, 7 Mar 2024 10:49:01 -0300 Subject: [PATCH] Fix empty state styles --- .../src/components/custom-fields/empty-state/style.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/js/product-editor/src/components/custom-fields/empty-state/style.scss b/packages/js/product-editor/src/components/custom-fields/empty-state/style.scss index 55eaa78a67bb..c68f130a9c37 100644 --- a/packages/js/product-editor/src/components/custom-fields/empty-state/style.scss +++ b/packages/js/product-editor/src/components/custom-fields/empty-state/style.scss @@ -1,6 +1,5 @@ .woocommerce-product-custom-fields__empty-state { @mixin skeleton { - @include placeholder(); background-color: $gray-200; border-radius: $grid-unit-05; width: $grid-unit-30; @@ -21,7 +20,7 @@ &:first-child { border-top: none; - .wp-block-woocommerce-product-custom-fields__empty-state-name { + .woocommerce-product-custom-fields__empty-state-name { width: 140px; } } @@ -29,7 +28,7 @@ &:nth-child(2) { opacity: 0.7; - .wp-block-woocommerce-product-custom-fields__empty-state-name { + .woocommerce-product-custom-fields__empty-state-name { width: 75px; } } @@ -37,7 +36,7 @@ &:nth-child(3) { opacity: 0.5; - .wp-block-woocommerce-product-custom-fields__empty-state-name { + .woocommerce-product-custom-fields__empty-state-name { width: 114px; } }