Skip to content

Commit

Permalink
removing bottom border between dashboard grid view filters and grid a…
Browse files Browse the repository at this point in the history
…nd removing bg color on dropdown (transparent type)
  • Loading branch information
BrittanyIRL committed Apr 13, 2020
1 parent 4caa4fe commit 5902af9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions assets/src/dashboard/app/views/shared/bodyViewOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ import PropTypes from 'prop-types';
* Internal dependencies
*/
import { Dropdown, ListBar } from '../../../components';
import { STORY_SORT_MENU_ITEMS } from '../../../constants';
import { STORY_SORT_MENU_ITEMS, DROPDOWN_TYPES } from '../../../constants';

const DisplayFormatContainer = styled.div`
margin: ${({ theme }) => `${theme.pageGutter.desktop}px 0`};
padding-bottom: 20px;
padding-left: 15px;
border-bottom: ${({ theme }) => theme.subNavigationBar.border};
display: flex;
align-items: space-between;
align-content: center;
Expand Down Expand Up @@ -83,6 +81,7 @@ const BodyViewOptions = ({
<SortDropdown
ariaLabel={sortDropdownAriaLabel}
items={STORY_SORT_MENU_ITEMS}
type={DROPDOWN_TYPES.TRANSPARENT_MENU}
value={currentSort}
onChange={(newSort) => handleSortChange(newSort.value)}
/>
Expand Down

0 comments on commit 5902af9

Please sign in to comment.