saleor-dashboard/src/components/ChannelsAvailabilityContent/styles.ts
Michał Droń d5c9a3dae8
Add trailing commas (#2062)
* Require trailing commas

* Add trailing commas

* Add trailing commas in testUtils dir

* Add trailing commas
2022-06-21 11:36:55 +02:00

47 lines
867 B
TypeScript

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
content: {
"& hr": {
left: -24,
position: "relative",
width: "calc(100% + 48px)",
},
},
contentTitle: {
margin: theme.spacing(1, 0),
},
dialog: {
marginBottom: -30,
marginTop: theme.spacing(2),
},
input: {
"& label": {
overflowX: "inherit",
},
},
label: {
fontSize: 14,
},
notFound: {
paddingBottom: theme.spacing(2),
},
option: {
"&:last-child": {
"& hr": {
display: "none",
},
},
margin: theme.spacing(1, 0),
},
scrollArea: {
maxHeight: 400,
overflowY: "scroll",
},
text: {
marginBottom: 5,
},
}),
{ name: "ChannelsAvailabilityContent" },
);