Fix talk table vertical alignment

This commit is contained in:
Oliver Davies 2017-07-10 23:47:53 +01:00
parent 3ee7239647
commit bbf2acc8e4
5 changed files with 15 additions and 21 deletions

View file

@ -19,3 +19,14 @@
@each $value in 'block', 'inline', 'inline-block'
.display-#{$value}
display: #{$value}
@each $value in 'top', 'middle', 'bottom'
.table
& > thead > tr > th,
& > thead > tr > td,
& > tbody > tr > th,
& > tbody > tr > td,
& > tfoot > tr > th,
& > tfoot > tr > td
&.vertical-#{$value}
vertical-align: #{$value}