Ver código fonte

Docs: Used the correct CSS selector to set the editor height in the Angular integration guide (see #1708). [skip ci]

Aleksander Nowodzinski 6 anos atrás
pai
commit
e0d500340a
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      docs/builds/guides/frameworks/angular.md

+ 2 - 2
docs/builds/guides/frameworks/angular.md

@@ -255,7 +255,7 @@ First, create a (S)CSS file in the parent component's directory and style the gi
 ```css
 /* src/app/app.component.css */
 
-:host ::ng-deep .ck-editor__editable {
+:host ::ng-deep .ck-editor__editable_inline {
 	min-height: 500px;
 }
 ```
@@ -278,7 +278,7 @@ To style the component using a global stylesheet, first, create it:
 ```css
 /* src/styles.css */
 
-.ck-editor__editable {
+.ck-editor__editable_inline {
 	min-height: 500px;
 }
 ```