saleor-dashboard/src/apps/components/AppFrame/styles.ts
2023-03-06 10:57:25 +01:00

22 lines
416 B
TypeScript

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
() => ({
iframe: {
width: "100%",
height: "100%",
border: "none",
},
iframeHidden: {
visibility: "hidden",
},
loader: {
position: "absolute",
top: "50%",
left: "50%",
transform: "translate(-50%, -50%)",
zIndex: -1,
},
}),
{ name: "AppFrame" },
);