saleor-dashboard/src/custom-apps/components/WebhookInfo/styles.ts

14 lines
323 B
TypeScript
Raw Normal View History

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
toolbar: {
padding: theme.spacing(2),
backgroundColor: theme.palette.saleor.fail.mid,
color: theme.palette.common.black,
marginBottom: theme.spacing(2),
},
}),
{ name: "WebhookInfo" },
);