ninja-keys icon indicating copy to clipboard operation
ninja-keys copied to clipboard

texts appear blurry

Open productdevbook opened this issue 2 years ago • 3 comments

image

productdevbook avatar Mar 13 '22 11:03 productdevbook

@productdevbook Were you able to resolve the issue?

muhsin-k avatar Jun 15 '23 04:06 muhsin-k

I seem to only be able to replicate this using Chrome.

jenslys avatar Jun 20 '23 21:06 jenslys

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}"));

pfgithub avatar Oct 02 '23 22:10 pfgithub