Skip to content
Snippets Groups Projects
Commit 087013f8 authored by Aanand Prasad's avatar Aanand Prasad Committed by Jure
Browse files

feat(ui): give unselected menu items a different colour

parent 411d3e3e
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ const Option = styled.div.attrs({ ...@@ -65,7 +65,7 @@ const Option = styled.div.attrs({
tabIndex: '0', tabIndex: '0',
'aria-selected': props => props.active, 'aria-selected': props => props.active,
})` })`
color: ${props => (props.active ? 'black' : 'inherit')}; color: ${props => (props.active ? 'black' : '#444')};
font-weight: ${props => (props.active ? '600' : 'inherit')}; font-weight: ${props => (props.active ? '600' : 'inherit')};
cursor: pointer; cursor: pointer;
font-family: var(--font-author); font-family: var(--font-author);
......
...@@ -147,7 +147,7 @@ exports[`Menu is rendered correctly when open 1`] = ` ...@@ -147,7 +147,7 @@ exports[`Menu is rendered correctly when open 1`] = `
} }
.c10 { .c10 {
color: inherit; color: #444;
font-weight: inherit; font-weight: inherit;
cursor: pointer; cursor: pointer;
font-family: var(--font-author); font-family: var(--font-author);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment