saleor-dashboard/src/new-apps/components/AppListPage/styles.ts

21 lines
447 B
TypeScript
Raw Normal View History

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
appContent: {
margin: theme.spacing(4, 0),
},
sectionHeader: {
fontSize: 14,
fontWeight: 700,
color: theme.palette.saleor.main[3],
margin: theme.spacing(8, 0, 3, 0),
textTransform: "uppercase",
},
previewLabel: {
marginLeft: theme.spacing(2),
},
}),
{ name: "AppListPage" },
);