Files
pingvin-share/frontend/src/styles/global.style.tsx
2022-10-31 11:20:54 +01:00

16 lines
254 B
TypeScript

import { Global } from "@mantine/core";
const GlobalStyle = () => {
return (
<Global
styles={() => ({
a: {
color: "inherit",
textDecoration: "none",
},
})}
/>
);
};
export default GlobalStyle;