In my content.tsx file I have:
import style from 'style.css';
The CSS file is imported and appended to head when the page is loaded which is fine, but is there a way to remove this style from DOM inside the same content.tsx?
console.log(style) only shows a empty object.