milligram/src/_Table.sass

53 lines
770 B
Sass
Raw Normal View History

2015-12-26 01:58:21 +00:00
// Table
//
table
2016-12-27 20:43:13 +00:00
border-spacing: 0
2019-07-23 00:50:51 +00:00
display: flex
2015-12-26 01:58:21 +00:00
width: 100%
2019-07-23 00:50:51 +00:00
thead
border-right: .1rem solid $color-quinary
2019-07-23 00:50:51 +00:00
tbody
display: flex
overflow-x: auto
white-space: nowrap
2019-07-23 00:50:51 +00:00
tr
border-right: .1rem solid $color-quinary
2019-07-23 00:50:51 +00:00
&:last-child
border-right: 0
2019-07-23 00:50:51 +00:00
td,
th
display: block
padding: 1.2rem 1.5rem
text-align: left
2019-07-23 00:50:51 +00:00
@media (min-width: 40.0rem)
2019-07-23 00:50:51 +00:00
table
display: table
2019-07-23 00:50:51 +00:00
thead
border-right: 0
overflow-x: visible
white-space: normal
2019-07-23 00:50:51 +00:00
tbody
display: table-row-group
2019-07-23 00:50:51 +00:00
tr
border-right: 0
2019-07-23 00:50:51 +00:00
&:last-child td
border-bottom: 0
2019-07-23 00:50:51 +00:00
td,
th
border-bottom: .1rem solid $color-quinary
display: table-cell