2022-07-08 10:14:42 +00:00
|
|
|
import { makeStyles } from "@saleor/macaw-ui";
|
2023-02-20 15:21:28 +00:00
|
|
|
import { vars } from "@saleor/macaw-ui/next";
|
2022-07-08 10:14:42 +00:00
|
|
|
|
|
|
|
export const useStyles = makeStyles(
|
|
|
|
theme => ({
|
|
|
|
eventSubtitle: {
|
|
|
|
marginTop: theme.spacing(1),
|
|
|
|
},
|
|
|
|
header: {
|
|
|
|
fontWeight: 500,
|
|
|
|
marginBottom: theme.spacing(1),
|
2023-02-20 15:21:28 +00:00
|
|
|
paddingLeft: 0,
|
2022-07-08 10:14:42 +00:00
|
|
|
},
|
|
|
|
linesTableCell: {
|
|
|
|
paddingRight: theme.spacing(3),
|
|
|
|
},
|
2023-02-20 15:21:28 +00:00
|
|
|
root: {
|
|
|
|
marginTop: theme.spacing(4),
|
2023-05-30 06:47:21 +00:00
|
|
|
paddingRight: vars.spacing[6],
|
|
|
|
paddingLeft: vars.spacing[6],
|
2023-02-20 15:21:28 +00:00
|
|
|
},
|
2022-07-08 10:14:42 +00:00
|
|
|
user: {
|
|
|
|
marginBottom: theme.spacing(1),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
{ name: "OrderHistory" },
|
|
|
|
);
|