
* Add preview pill to marketplace view * Update messages * Remove marketplace * Add margin
18 lines
298 B
TypeScript
18 lines
298 B
TypeScript
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
const useStyles = makeStyles(
|
|
theme => ({
|
|
iframe: {
|
|
height: "100vh",
|
|
position: "sticky",
|
|
},
|
|
previewPill: {
|
|
marginBottom: theme.spacing(2),
|
|
},
|
|
}),
|
|
{
|
|
name: "marketplaceStyles",
|
|
},
|
|
);
|
|
|
|
export { useStyles };
|