saleor-dashboard/src/orders/components/OrderDetailsPage/styles.ts
Dawid 214b677684
Fix missing metadata and payment balance on unconfirmed orders (#2314)
* Fix missing metadata and payment balance on unconfirmed orders

* Update changelog with fix missing fields on order page

Co-authored-by: Patryk Andrzejewski <vox3r69@gmail.com>
2022-09-23 12:25:56 +02:00

17 lines
310 B
TypeScript

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
date: {
marginBottom: theme.spacing(3),
},
header: {
display: "flex",
justifyContent: "space-between",
marginBottom: 0,
},
}),
{
name: "OrderDetailsPage",
},
);