add missing semicolon (#2182)
Fixes #2152 A semicolon was missing from the editor.css file ### Change Type - [x] `patch` — Bug fix - [ ] `minor` — New feature - [ ] `major` — Breaking change - [ ] `dependencies` — Changes to package dependencies[^1] - [ ] `documentation` — Changes to the documentation only[^2] - [ ] `tests` — Changes to any test code only[^2] - [ ] `internal` — Any other changes that don't affect the published package[^2] - [ ] I don't know [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Test Plan ### Release Notes - Fix typo in CSS file
This commit is contained in:
parent
70a1103107
commit
1cf4e69c47
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@
|
|||
--color-brush-stroke: rgba(180, 180, 180, 0.25);
|
||||
--color-grid: #909090;
|
||||
--color-low: #2c3136;
|
||||
--color-low-border: #30363b
|
||||
--color-low-border: #30363b;
|
||||
--color-culled: blue;
|
||||
--color-muted-none: rgba(255, 255, 255, 0);
|
||||
--color-muted-0: rgba(255, 255, 255, 0.02);
|
||||
|
|
Loading…
Reference in a new issue