Fixes menu spacing issue

This commit is contained in:
Tom Moor
2018-06-04 15:01:20 -04:00
parent 1c081f8777
commit 9d7860feb0
2 changed files with 2 additions and 1 deletions

View File

@ -93,6 +93,7 @@ const Menu = styled.div`
border: ${color.slateLight}; border: ${color.slateLight};
background: ${color.white}; background: ${color.white};
border-radius: 2px; border-radius: 2px;
padding: 0.5em 0;
min-width: 160px; min-width: 160px;
overflow: hidden; overflow: hidden;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.08), box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.08),

View File

@ -19,7 +19,7 @@ const DropdownMenuItem = ({ onClick, children, ...rest }: Props) => {
const MenuItem = styled.a` const MenuItem = styled.a`
display: flex; display: flex;
margin: 0; margin: 0;
padding: 5px 10px; padding: 6px 12px;
height: 32px; height: 32px;
color: ${color.slateDark}; color: ${color.slateDark};