Skip to content

Commit

Permalink
chore: 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KillerCodeMonkey committed Jun 23, 2019
1 parent 1868367 commit f6177d9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-quill",
"license": "MIT",
"version": "6.0.0-1",
"version": "6.0.0",
"author": {
"name": "Bengt Weiße"
},
Expand Down
6 changes: 5 additions & 1 deletion src/quill-view-html.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ import {
@Component({
encapsulation: ViewEncapsulation.None,
selector: 'quill-view-html',
styles: ['.ql-container.ngx-quill-view-html { border-width: 0 }'],
styles: [`
.ql-container.ngx-quill-view-html {
border: 0;
}
`],
template: `
<div class="ql-container" [ngClass]="themeClass">
<div class="ql-editor" [innerHTML]="innerHTML">
Expand Down
6 changes: 5 additions & 1 deletion src/quill-view.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ const getFormat = (format?: QuillFormat, configFormat?: QuillFormat): QuillForma
@Component({
encapsulation: ViewEncapsulation.None,
selector: 'quill-view',
styles: ['.ql-container.ngx-quill-view { border-width: 0 }'],
styles: [`
.ql-container.ngx-quill-view {
border: 0;
}
`],
template: `
<div #quillView></div>
`
Expand Down

0 comments on commit f6177d9

Please sign in to comment.