From 9fb3c4be1e0fce2af551d0f72712fc0cca30050e Mon Sep 17 00:00:00 2001 From: Alex Windett Date: Fri, 3 Feb 2017 10:08:32 +0000 Subject: [PATCH] fixing list item border --- ui/src/components/list/item.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/src/components/list/item.js b/ui/src/components/list/item.js index 96c4f75f..091c3d63 100644 --- a/ui/src/components/list/item.js +++ b/ui/src/components/list/item.js @@ -33,7 +33,6 @@ const minHeight = (props) => props.collapsed ? 'auto' : remcalc(126); -// remcalc(126) const shadow = (props) => props.stacked ? paper : props.flat @@ -52,7 +51,7 @@ const Item = styled(Row)` height: ${height}; min-height: ${minHeight}; box-shadow: ${shadow}; - border: ${remcalc(1)} solid ${colors.base.grey}; + border: ${remcalc(1)} solid #D8D8D8; background-color: ${colors.base.white}; margin-bottom: ${marginBottom}; `;