@project44-manifest/react
Version:
Manifest Design System react components
25 lines (22 loc) • 537 B
text/typescript
import { styled } from '@project44-manifest/react-styles';
export const StyledDropdownMenu = styled('ul', {
boxSizing: 'border-box',
display: 'inline-block',
listStyleType: 'none',
margin: 0,
padding: '$small',
outline: 0,
overflow: 'auto',
userSelect: 'none',
'.manifest-dropdown-separator': {
alignSelf: 'stretch',
backgroundColor: '$border-primary',
border: 'none',
borderWidth: '$small',
height: '1px',
mx: '-$small',
my: '$small',
overflow: 'visible',
width: 'auto',
},
});