Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
fix(TableContentWrapper): use css vertical-align instead of valign
Browse files Browse the repository at this point in the history
  • Loading branch information
Unic0arn committed Dec 19, 2018
1 parent 0cb0937 commit 3be2d3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class TableHead extends Component {
scope="col"
role="columnheader"
unstyledChild
valign="bottom"
className={classes.th}
{...col.thProps}
>
<span className={cn({ [classes.screenReadersOnly]: col.hideHeaderLabel })}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ export default ({ typography, palette, mixins }) => ({
display: 'none',
},
},
th: {
verticalAlign: 'bottom',
},
button: {
position: 'relative',
fontFamily: typography.primary.fontFamily,
Expand Down

0 comments on commit 3be2d3d

Please sign in to comment.