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

21 lines
335 B
Sass
Raw Normal View History

2018-06-03 08:33:12 +00:00
.table-collapse
2018-10-03 23:49:46 +00:00
@apply border-collapse
2018-06-03 08:33:12 +00:00
.table-responsive
2018-10-03 23:49:46 +00:00
@apply mb-4 border w-full overflow-x-auto overflow-y-hidden
2018-06-03 08:33:12 +00:00
2018-06-06 20:46:10 +00:00
table
2018-10-03 23:49:46 +00:00
@apply mb-0 border-0 whitespace-no-wrap
2018-06-03 08:33:12 +00:00
.table
2018-10-03 23:49:46 +00:00
@apply w-full table-collapse
2018-06-03 08:33:12 +00:00
2018-06-06 20:46:10 +00:00
tr:nth-child(odd)
2018-10-03 23:49:46 +00:00
@apply bg-grey-lighter
2018-06-03 08:33:12 +00:00
2018-06-06 20:46:10 +00:00
tr th
2018-10-03 23:46:11 +00:00
@apply text-left p-3 bg-white
2018-06-03 08:33:12 +00:00
2018-06-06 20:46:10 +00:00
td
2018-10-03 23:46:11 +00:00
@apply p-3 border-t