From aed128be0decebb4abe18b1f0a393cc9f4a17d92 Mon Sep 17 00:00:00 2001 From: JUDIT GRESKOVITS Date: Wed, 22 Feb 2017 15:11:22 +0000 Subject: [PATCH] Fix vertical space around and under breadcrumb --- frontend/src/components/breadcrumb/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/breadcrumb/index.js b/frontend/src/components/breadcrumb/index.js index db541f24..71805099 100644 --- a/frontend/src/components/breadcrumb/index.js +++ b/frontend/src/components/breadcrumb/index.js @@ -12,7 +12,8 @@ const fns = require('@ui/shared/functions'); const constants = require('@ui/shared/constants'); const { - remcalc + remcalc, + unitcalc } = fns; const { @@ -30,8 +31,7 @@ const { // Main Contonent Wrapper Styles const StyledDiv = styled.div` border-bottom: solid ${remcalc(1)} ${colors.base.grey}; - padding: ${remcalc(30)} 0; - margin-bottom: ${remcalc(21)}; + padding: ${unitcalc(4.5)} 0 ${unitcalc(4.5)} 0; `; const BreadcrumbA = styled(NavLink)`