saleor-dashboard/src/marketplace/styles.ts

19 lines
298 B
TypeScript
Raw Normal View History

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