* [Opportunities] fix overlapping borders * remove margin on SortAndFilterBar * add margin-right to StyledBoard
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
export const StyledBoard = styled.div`
|
|
border-top: 1px solid ${({ theme }) => theme.border.color.light};
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
margin-left: ${({ theme }) => theme.spacing(2)};
|
|
margin-right: ${({ theme }) => theme.spacing(2)};
|
|
`;
|