Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
Merge pull request #208 from accordproject/dl-styling
Browse files Browse the repository at this point in the history
style(TemplateCard): make background of card default to white
  • Loading branch information
DianaLease authored Oct 31, 2019
2 parents 19ead4a + 0b78855 commit 8a79abb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/TemplateLibrary/TemplateCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,17 @@ const CardContainer = styled(Card)`
margin: 10px 0 !important;
border: ${props => props.tempborder || 'none'};
border-radius: 6px !important;
background-color: ${props => props.color || 'transparent'} !important;
background-color: ${props => props.color || '#fff'} !important;
text-align: left;
box-shadow: 0 1px 9px 0 rgba(0,0,0,0.1) !important;
`;

const Title = styled.div`
display: inline;
height: 16px;
color: ${props => props.color || null};
font-size: medium;
font-weight: 600;
line-height: 16px;
margin-bottom: 5px;
`;

const TemplateLogo = styled(Image)`
Expand Down

0 comments on commit 8a79abb

Please sign in to comment.