Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix(lsg): use valid color variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Lasse Küchler committed Dec 6, 2017
1 parent 8a024e6 commit 16ae192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lsg/patterns/layout/demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import styled from 'styled-components';
const StyledTestDiv = styled.div`
flex-grow: 1;
padding: 20px 10px;
background: ${colors.greenLight.toString()};
background: ${colors.grey90.toString()};
&:nth-child(odd) {
background: ${colors.greenDark.toString()};
background: ${colors.grey70.toString()};
}
`;

Expand Down

0 comments on commit 16ae192

Please sign in to comment.