react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
38 lines (29 loc) • 715 B
text/typescript
// ThreeD Garden Base Styles
import colors from "~/themes/theme-light/base/colors"
// ThreeD Garden Helper Functions
import pxToRem from "~/themes/theme-light/functions/pxToRem"
const { transparent } = colors
// types
type Types = any
const select: Types = {
styleOverrides: {
select: {
display: "grid",
alignItems: "center",
padding: `0 ${pxToRem(12)} !important`,
"& .Mui-selected": {
backgroundColor: transparent.main,
},
},
selectMenu: {
background: "none",
height: "none",
minHeight: "none",
overflow: "unset",
},
icon: {
display: "none",
},
},
}
export default select