react-colorful icon indicating copy to clipboard operation
react-colorful copied to clipboard

When my document did not has a head element?

Open zzlb0224 opened this issue 8 months ago • 1 comments

In this funciton

/**
 * Injects CSS code into the document's <head>
 */
export const useStyleSheet = (nodeRef: RefObject<HTMLDivElement>): void => {
        parentDocument.head.appendChild(styleElement);

To

 (parentDocument.head || parentDocument.body || parentDocument.children[0] || parentDocument).appendChild(styleElement);

zzlb0224 avatar Jun 11 '24 08:06 zzlb0224