From 69acd3af6720c089239340e58fefe74d8719ebcb Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Wed, 12 Aug 2020 17:42:14 -0300 Subject: [PATCH] :construction: add gap to dashboard cards --- client/modules/Mobile/MobileDashboardView.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/modules/Mobile/MobileDashboardView.jsx b/client/modules/Mobile/MobileDashboardView.jsx index b33bca42..bce0f454 100644 --- a/client/modules/Mobile/MobileDashboardView.jsx +++ b/client/modules/Mobile/MobileDashboardView.jsx @@ -27,6 +27,7 @@ const EXAMPLE_USERNAME = 'p5'; const ContentWrapper = styled(Content)` table { table-layout: fixed; + margin-bottom: ${remSize(120)} } td ,thead button { @@ -91,6 +92,7 @@ const ContentWrapper = styled(Content)` border-radius: ${remSize(4)}; grid-template-columns: repeat(${props => props.fieldcount - 1}) 1fr; grid-template-areas: "name name name" "content content content"; + grid-row-gap: ${remSize(12)} } .loader-container { position: fixed ; padding-bottom: 32% }