Skip to content

Commit e7d8f00

Browse files
committed
Fix hover colors
1 parent dab6413 commit e7d8f00

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/TreeView/TreeViewItem.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ const NavigationLink = styled(GatsbyLink)`
4242
props.active === "t" &&
4343
`
4444
border-color: #f75b4b !important;
45-
background-color: #ffeeed;
45+
background-color: #edeaea;
4646
`}
4747
4848
:hover {
4949
text-decoration: none;
5050
color: black;
51-
background-color: #eeeeee;
52-
border-color: #eeeeee;
51+
background-color: #f5ebeb;
52+
border-color: #f5ebeb;
5353
//filter: brightness(0.5);
5454
}
5555
`

src/partials/PagesInThisSection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ const Page = styled.li`
3232
color: white;
3333
3434
:hover {
35-
background-color: #333333 !important;
35+
background-color: #380C0E !important;
3636
color: white !important;
3737
}
3838
`}
3939
4040
:hover {
41-
background-color: #eeeeee;
41+
background-color: #f5ebeb;
4242
color: black;
4343
}
4444
`

0 commit comments

Comments
 (0)