From f6f75a6eb78ceee5d9c00ac82264073655ea7ac6 Mon Sep 17 00:00:00 2001 From: shota takata <36581513+im36-123@users.noreply.github.com> Date: Tue, 24 Mar 2020 17:39:47 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20fix=20that=20some=20styles=20doesn?= =?UTF-8?q?=E2=80=99t=20work=20(#705)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Table/Cell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Table/Cell.tsx b/src/components/Table/Cell.tsx index 5a50adb0bd..6e5a8fa6a9 100644 --- a/src/components/Table/Cell.tsx +++ b/src/components/Table/Cell.tsx @@ -49,11 +49,11 @@ const Th = styled.th<{ themes: Theme; onClick?: () => void }>` const { size, palette, interaction } = themes return css` - font-size: ${size.pxToRem(size.font.SHORT)} + font-size: ${size.pxToRem(size.font.SHORT)}; font-weight: bold; padding: ${size.pxToRem(size.space.XS)}; color: ${palette.TEXT_GREY}; - transition: ${isTouchDevice ? 'none' : `background-color ${interaction.hover.animation}`} + transition: ${isTouchDevice ? 'none' : `background-color ${interaction.hover.animation}`}; text-align: left; line-height: 1.5; vertical-align: middle;