From f49ff27dd3355e6c837112d74e05f62ffa469a78 Mon Sep 17 00:00:00 2001 From: Staci Cooper Date: Tue, 17 Aug 2021 19:50:23 -0700 Subject: [PATCH] Fix selector for frontend css --- packages/block-library/src/common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/block-library/src/common.scss b/packages/block-library/src/common.scss index 5bd6a635f70b5..dacbe435efd85 100644 --- a/packages/block-library/src/common.scss +++ b/packages/block-library/src/common.scss @@ -107,6 +107,6 @@ // The following sets baseline border styles with zero specificity such that // when a user begins to alter block borders via the block support UI they // see immediate visual changes. -html :where(.wp-block) { +html :where([class^="wp-block"]) { border: 0 solid currentColor; }