Skip to content
Snippets Groups Projects
Commit 1d5339f2 authored by chris's avatar chris
Browse files

revert colors

parent 54fa0bff
No related branches found
No related tags found
1 merge request!318Inline nodeview
...@@ -19,9 +19,9 @@ const GlobalStyle = createGlobalStyle` ...@@ -19,9 +19,9 @@ const GlobalStyle = createGlobalStyle`
`; `;
const activeStyles = css` const activeStyles = css`
background: #fff; background: #535e76;
color: #535e76; color: #fff;
border: 1px solid#535E76; padding: 5px 15px 5px 15px;
`; `;
const ProjectContainer = styled.div` const ProjectContainer = styled.div`
...@@ -50,12 +50,12 @@ const Projects = styled.div` ...@@ -50,12 +50,12 @@ const Projects = styled.div`
`; `;
const ProjectButton = styled.button` const ProjectButton = styled.button`
border: 1px solid #535e76;
cursor: pointer; cursor: pointer;
color: #535e76;
margin-right: 20px; margin-right: 20px;
border: none; background: #fff;
background: #535e76; padding: 4px 14px 4px 14px;
padding: 5px 15px 5px 15px;
color: #fff;
${props => props.isActive && activeStyles} ${props => props.isActive && activeStyles}
`; `;
......
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