From b498baab28a39ce6ee79d9df97f5f2ad4c70a9d3 Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Mon, 3 Aug 2020 18:14:40 -0300 Subject: [PATCH] :lipstick: adjust table width to fit 320px --- client/modules/Mobile/MobileViewContent.jsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/client/modules/Mobile/MobileViewContent.jsx b/client/modules/Mobile/MobileViewContent.jsx index 7f17b751..11582982 100644 --- a/client/modules/Mobile/MobileViewContent.jsx +++ b/client/modules/Mobile/MobileViewContent.jsx @@ -9,10 +9,17 @@ export default styled.div` .sketch-list__sort-button { padding: 0 } - td { font-size: ${remSize(10)} }; - th { + td { + font-size: ${remSize(10)}; + min-width: ${remSize(72)}; + }; + tbody th { + flex-direction: row; font-size: ${remSize(14)}; /* font-weight: bold; */ - max-width: ${remSize(140)} + /* width: 100%; */ + max-width: ${remSize(140)}; + }; + td.sketch-list__dropdown-column { min-width: unset; } `;