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

23 lines
372 B
Sass
Raw Normal View History

2018-06-03 09:33:12 +01:00
.table-collapse
2018-06-06 21:46:10 +01:00
border-collapse: collapse
2018-06-03 09:33:12 +01:00
.table-responsive
2018-06-06 21:46:10 +01:00
@apply .mb-4 .border .w-full
overflow-x: auto
overflow-y: hidden
2018-06-03 09:33:12 +01:00
2018-06-06 21:46:10 +01:00
table
@apply .mb-0 .border-0 .whitespace-no-wrap
2018-06-03 09:33:12 +01:00
.table
2018-06-06 21:46:10 +01:00
@apply .w-full .table-collapse
2018-06-03 09:33:12 +01:00
2018-06-06 21:46:10 +01:00
tr:nth-child(odd)
@apply .bg-grey-lighter
2018-06-03 09:33:12 +01:00
2018-06-06 21:46:10 +01:00
tr th
@apply .text-left .px-3 .py-2 .bg-white
2018-06-03 09:33:12 +01:00
2018-06-06 21:46:10 +01:00
td
@apply .px-3 .py-2 .border-t