stevermeister/ngx-wig

Size of the Field

Closed this issue · 2 comments

Is it possible to change the size of the ngx-wig area.

I tried to do it with css :

.nw-editor {
height: 100px !important;
}

But it doesn't work as I'm doing it from another component.

@cbanzet If your component is the host of the editor, you need to use the ::ng-deep combinator.

::ng-deep .nw-editor {
  height: 100px !important;
}

thanks a lot @bampakoa