phemartin
phemartin
PD🧩 Plasmo Developers
Created by phemartin on 10/25/2023 in #🔰newbie
Mantine Example is Deprecated
plasmo-with-mantine example is deprecated. Mantine v7.0 no longer uses emotion or emotionCache. I tried fixing by based on the Tailwind approach. It works well for the default Mantine, but not for custom themes and fonts:
import cssText from "data-text:@mantine/core/styles.css";
import "@mantine/core/styles.css";

export const getStyle = () => {
const style = document.createElement("style")
style.textContent = cssText
return style
}
import cssText from "data-text:@mantine/core/styles.css";
import "@mantine/core/styles.css";

export const getStyle = () => {
const style = document.createElement("style")
style.textContent = cssText
return style
}
Can someone help me update the plasmo-with-mantine example? Thanks! ✌️ Resources: - https://github.com/PlasmoHQ/examples/tree/main/with-mantine - https://mantine.dev/changelog/7-0-0/
4 replies