fix: Minor button alignment issues

This commit is contained in:
Tom Moor
2019-08-08 22:07:29 -07:00
parent e936aa82c9
commit 2ce11365ab
3 changed files with 15 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import * as React from 'react';
import { find } from 'lodash';
import styled from 'styled-components';
import Scrollable from 'components/Scrollable';
import Button from 'components/Button';
import Button, { Inner } from 'components/Button';
import { DropdownMenu } from 'components/DropdownMenu';
import FilterOption from './FilterOption';
@@ -68,6 +68,10 @@ const StyledButton = styled(Button)`
&:hover {
background: transparent;
}
${Inner} {
line-height: 28px;
}
`;
const SearchFilter = props => {