Merge pull request #9 from RandellDawson/feature/styled-tab-borders
Restyled tab borders to remove doubled-up borders.
This commit is contained in:
committed by
mrugesh mohapatra
parent
e31396931e
commit
9332d4eb14
@ -13,11 +13,17 @@ const Tab = styled.div`
|
||||
font-size: 18px;
|
||||
padding: 5px;
|
||||
border: 2px solid blue;
|
||||
border-left: none;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
background: blue;
|
||||
color: white;
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
border-left: 2px solid blue;
|
||||
}
|
||||
`;
|
||||
|
||||
const Tabs = ({ view, onViewChange }) => {
|
||||
|
Reference in New Issue
Block a user