saleor-dashboard/src/marketplace/styles.ts

16 lines
231 B
TypeScript
Raw Normal View History

import { makeStyles } from "@saleor/macaw-ui";
const useStyles = makeStyles(
() => ({
iframe: {
height: "100vh",
position: "sticky",
},
}),
{
name: "marketplaceStyles",
},
);
export { useStyles };