diff --git a/packages/block-editor/src/components/rich-text/format-toolbar/index.js b/packages/block-editor/src/components/rich-text/format-toolbar/index.js
index c1b58796268352..aa6570f620035b 100644
--- a/packages/block-editor/src/components/rich-text/format-toolbar/index.js
+++ b/packages/block-editor/src/components/rich-text/format-toolbar/index.js
@@ -19,7 +19,7 @@ const FormatToolbar = ( { controls } ) => {
) }
- { ( fills ) => fills.length &&
+ { ( fills ) => fills.length !== 0 &&
-
-
+
+
+
+
+
+
+
+
);
}
diff --git a/playground/src/style.scss b/playground/src/style.scss
new file mode 100644
index 00000000000000..703a694db017f1
--- /dev/null
+++ b/playground/src/style.scss
@@ -0,0 +1,19 @@
+@import "./common.scss";
+@import "./editor-styles.scss";
+
+#app {
+ padding-top: 20px;
+
+ img {
+ max-width: 100%;
+ height: auto;
+ }
+
+ iframe {
+ width: 100%;
+ }
+
+ .components-navigate-regions {
+ height: 100%;
+ }
+}