Skip to content

Commit

Permalink
fix: fix that some styles doesn’t work (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
im36-123 committed Mar 24, 2020
1 parent b38bbdd commit f6f75a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Table/Cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f6f75a6

Please sign in to comment.