We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f213a commit 38031beCopy full SHA for 38031be
2 files changed
src/components/TreeView/TreeViewItem.js
@@ -19,13 +19,14 @@ const ListItem = styled.li`
19
cursor: pointer;
20
list-style-type: none;
21
margin-bottom: 0;
22
- padding: 0.5rem;
+ padding: 0.75rem;
23
`
24
25
const NavigationLink = styled(GatsbyLink)`
26
- padding-left: 0.5rem;
+ border-left: 0.5rem solid white;
27
${props => props.active == "t" && `
28
- background-color: #ffccc6;
+ border-color: #f75b4b;
29
+ background-color: #ffeeed;
30
width: 100%;
31
`}
32
src/components/TreeView/index.js
@@ -4,6 +4,7 @@ import styled from 'styled-components'
4
5
const StyledUl = styled.ul`
6
margin-left: 0;
7
+ margin-top: 0.5rem;
8
9
10
export default class TreeView extends React.Component {
0 commit comments