Skip to content

Commit

Permalink
Create Block: Fix errors reported by CSS linter in ESNext template (#…
Browse files Browse the repository at this point in the history
…23188)

* Create Block: Fix errors reported by CSS linter in ESNext template

* Update CHANGELOG.md
  • Loading branch information
gziolo committed Jun 16, 2020
1 parent 4a15a7e commit 78ea4fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion packages/create-block/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
*/

.wp-block-{{namespace}}-{{slug}} {
border: 1px dotted red;
border: 1px dotted #f00;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

.wp-block-{{namespace}}-{{slug}} {
background-color: theme(button);
color: white;
color: #fff;
padding: 2px;
}

0 comments on commit 78ea4fd

Please sign in to comment.