oliverdavies.uk/assets/sass/components/table.sass

21 lines
341 B
Sass
Raw Normal View History

2018-12-07 22:45:27 +00:00
.table-collapse
2018-12-18 22:57:51 +00:00
@apply border-collapse
2018-12-07 22:45:27 +00:00
.table-responsive
2018-12-18 22:57:51 +00:00
@apply mb-4 border w-full overflow-x-auto overflow-y-hidden
2018-12-07 22:45:27 +00:00
2018-12-18 22:57:51 +00:00
table
@apply mb-0 border-0 whitespace-no-wrap
2018-12-07 22:45:27 +00:00
.table
2018-12-18 22:57:51 +00:00
@apply w-full table-collapse
2018-12-07 22:45:27 +00:00
2018-12-18 22:57:51 +00:00
& tr:nth-child(odd)
@apply bg-grey-lighter
2018-12-07 22:45:27 +00:00
2018-12-18 22:57:51 +00:00
& tr th
@apply text-left p-3 bg-white
2018-12-07 22:45:27 +00:00
2018-12-18 22:57:51 +00:00
& td
@apply p-3 border-t