saleor-dashboard/src/shipping/components/OrderValue/styles.ts
Magdalena Markusik 314b043afa
Saleor 4626/fix shipping zone rate UI (#1511)
* Fix shipping zone rates ui

* Update tests and messages
2021-10-18 10:57:53 +02:00

34 lines
567 B
TypeScript

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
colName: {
fontSize: 14,
paddingLeft: 0,
width: "auto"
},
colType: {
fontSize: 14,
textAlign: "right",
width: 200
},
content: {
padding: theme.spacing(3, 0, 3, 0)
},
info: {
fontSize: 14
},
price: {
verticalAlign: "top"
},
subheader: {
padding: theme.spacing(0, 3, 0, 3)
},
table: {
tableLayout: "fixed"
}
}),
{
name: "OrderValue"
}
);