saleor-dashboard/src/apps/components/AppFrame/styles.ts
Jakub Majorek ab4c897b2a
Add dashboard extensions (#1292)
* Fix app embed

* initial setup

* Create ButtonWithSelect component

* Use context

* Use dialog

* Handle app-bridge actions

* Code adjustments, bump packages

* Fix tests

* Fix schema formatting

* Send response

* Use latest package versions
2021-08-20 15:58:53 +02:00

12 lines
212 B
TypeScript

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
() => ({
iframe: {
width: "100%",
height: "100%",
border: "none"
}
}),
{ name: "AppFrame" }
);