From 0b78855c8607907fc5fe5c53efbf550925deb26e Mon Sep 17 00:00:00 2001 From: Diana Lease Date: Thu, 31 Oct 2019 15:55:43 -0400 Subject: [PATCH] style(TemplateCard): make background of card default to white Signed-off-by: Diana Lease --- src/TemplateLibrary/TemplateCard.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/TemplateLibrary/TemplateCard.js b/src/TemplateLibrary/TemplateCard.js index 89f2bd3e..3806f599 100644 --- a/src/TemplateLibrary/TemplateCard.js +++ b/src/TemplateLibrary/TemplateCard.js @@ -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)`