saleor-dashboard/src/components/Attributes/styles.ts

26 lines
484 B
TypeScript
Raw Normal View History

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
() => ({
fileField: {
float: "right"
},
pullRight: {
display: "flex",
justifyContent: "flex-end"
},
swatchInput: {
paddingTop: 16.5,
paddingBottom: 16.5
},
swatchPreview: {
width: 32,
height: 32,
borderRadius: 4,
backgroundSize: "cover",
backgroundPosition: "center"
}
}),
{ name: "AttributeRow" }
);