diff --git a/packages/create-block/CHANGELOG.md b/packages/create-block/CHANGELOG.md index 759eeef5634b8..7164a92cc2855 100644 --- a/packages/create-block/CHANGELOG.md +++ b/packages/create-block/CHANGELOG.md @@ -2,11 +2,17 @@ ## Unreleased +## 0.14.2 (2020-06-16) + +### Bug Fix + +- Fix errors reported by CSS linter in ESNext template by using hex colors in CSS files ([#23188](https://github.com/WordPress/gutenberg/pull/23188)). + ## 0.14.1 (2020-06-15) ### Bug Fix -- Fix an error reported by ESLint by improving JSDoc comment in ESNext template in `src/edit.js` file ([#23164](https://github.com/WordPress/gutenberg/pull/23164)). +- Fix an error reported by JavaScript linter by improving JSDoc comment in ESNext template in `src/edit.js` file ([#23164](https://github.com/WordPress/gutenberg/pull/23164)). ## 0.14.0 (2020-06-15) diff --git a/packages/create-block/lib/templates/esnext/src/editor.scss.mustache b/packages/create-block/lib/templates/esnext/src/editor.scss.mustache index 0f0c68b4cf488..fc68223e00660 100644 --- a/packages/create-block/lib/templates/esnext/src/editor.scss.mustache +++ b/packages/create-block/lib/templates/esnext/src/editor.scss.mustache @@ -5,5 +5,5 @@ */ .wp-block-{{namespace}}-{{slug}} { - border: 1px dotted red; + border: 1px dotted #f00; } diff --git a/packages/create-block/lib/templates/esnext/src/style.scss.mustache b/packages/create-block/lib/templates/esnext/src/style.scss.mustache index 3e1dc0a2b3504..b4c87868e969b 100644 --- a/packages/create-block/lib/templates/esnext/src/style.scss.mustache +++ b/packages/create-block/lib/templates/esnext/src/style.scss.mustache @@ -7,6 +7,6 @@ .wp-block-{{namespace}}-{{slug}} { background-color: theme(button); - color: white; + color: #fff; padding: 2px; }