From a3a1834aec34c50b46228c642fa13da4a641bb96 Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Tue, 4 Aug 2020 17:38:51 -0300 Subject: [PATCH] :lipstick: make sketch name bold on sketch list --- client/modules/Mobile/MobileDashboardView.jsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/client/modules/Mobile/MobileDashboardView.jsx b/client/modules/Mobile/MobileDashboardView.jsx index 8d7cbf68..eb0a98c5 100644 --- a/client/modules/Mobile/MobileDashboardView.jsx +++ b/client/modules/Mobile/MobileDashboardView.jsx @@ -33,9 +33,11 @@ const ContentWrapper = styled(Content)` thead th { padding-left: 0; } - thead th:not(:first-child) { - width: 48px !important; -} + thead th:not(:first-child), .sketches-table__row td { + width: ${remSize(54)}; + } + + tbody th { font-weight: bold; }; .sketches-table__row th { font-size: ${remSize(12)}; @@ -45,7 +47,6 @@ const ContentWrapper = styled(Content)` .sketches-table__row td { text-align: center; - width: ${remSize(24)} !important; } .sketch-list__sort-button { padding: 0 }