34 lines
567 B
TypeScript
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"
|
|
}
|
|
);
|