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

23 lines
364 B
TypeScript
Raw Normal View History

import { makeStyles } from "@saleor/macaw-ui";
const ITEM_HEIGHT = 48;
export const useStyles = makeStyles(
theme => ({
popper: {
marginTop: theme.spacing(1),
zIndex: 2
},
paper: {
maxHeight: ITEM_HEIGHT * 4.5,
overflowY: "scroll"
},
buttonIcon: {
margin: 0
}
}),
{
name: "ButtonWithSelect"
}
);