ninja-keys
ninja-keys copied to clipboard
texts appear blurry
@productdevbook Were you able to resolve the issue?
I seem to only be able to replicate this using Chrome.
Here's a workaround until this is fixed in the library:
const styl = (a: string) => {
const stylres = document.createElement("style");
stylres.appendChild(document.createTextNode(a));
return stylres;
}
ninja.shadowRoot!.appendChild(styl("* {will-change: unset !important}"));