23 lines
364 B
TypeScript
23 lines
364 B
TypeScript
![]() |
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"
|
||
|
}
|
||
|
);
|