We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25055c2 commit 69642b0Copy full SHA for 69642b0
@webwriter/core/view/editor/palette.ts
@@ -129,8 +129,9 @@ export class Palette extends LitElement {
129
super.connectedCallback()
130
if(WEBWRITER_ENVIRONMENT.engine.name === "WebKit") {
131
const sheet = new CSSStyleSheet()
132
- sheet.replaceSync(`:host { padding-right: 10px; overflow-y: scroll; height: 100% !important}`)
+ sheet.replaceSync(`:host { padding-right: 10px; overflow-y: auto; height: 100% !important}`)
133
this.shadowRoot!.adoptedStyleSheets = [...this.shadowRoot!.adoptedStyleSheets, sheet]
134
+ this.requestUpdate()
135
}
136
137
0 commit comments