From df1c732521228988ab119a5df2232a6259c9998a Mon Sep 17 00:00:00 2001 From: Chika Date: Mon, 17 Jan 2022 12:48:03 +0300 Subject: [PATCH] Elements: fix table row height --- src/client/Elements/Table.jsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/client/Elements/Table.jsx b/src/client/Elements/Table.jsx index b8991c2..47be296 100644 --- a/src/client/Elements/Table.jsx +++ b/src/client/Elements/Table.jsx @@ -43,11 +43,7 @@ const TableStyles = styled(Box)` th, td { - // ${mq.laptop` - // width: 25% !important; - // `} position: relative; - // overflow-wrap: break-word; text-overflow: ellipsis; overflow: hidden; border-bottom: 1px solid ${colors.WHITE[50]}; @@ -55,7 +51,7 @@ const TableStyles = styled(Box)` td { padding: 10px 16px; - & :first-child { + > * { margin: 0; } }