From 1fc09b018739ff0f8d5a509454b3f3be52ab5b7e Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Tue, 29 Aug 2023 15:56:09 +0500 Subject: [PATCH] use correct css selector to target tabbed heading block style --- block-styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/block-styles.css b/block-styles.css index 7015fd6..edb81fb 100644 --- a/block-styles.css +++ b/block-styles.css @@ -1,13 +1,13 @@ /* For the "Tabbed Heading" block style */ -.tabbed-heading { +.wp-block-heading.is-style-tabbed-heading { display: flex; height: 36px; align-items: center; border-top: 1px solid; } -.tabbed-heading::before { +.wp-block-heading.is-style-tabbed-heading::before { content: ""; border-bottom: 1px solid; border-right: 1px solid; @@ -17,7 +17,7 @@ border-top: 2px solid var(--wp--preset--color--background); } -.tabbed-heading::after { +.wp-block-heading.is-style-tabbed-heading::after { content: ""; border-bottom: 1px solid; flex-grow: 1;