oliverdavies.uk/assets/less/components/table.less
2018-01-13 08:42:55 +00:00

19 lines
275 B
Plaintext

.table {
@apply .w-full;
@apply .table-collapse;
@apply .border;
@apply .border-grey-light;
}
.table tr:nth-child(odd) {
@apply .bg-grey-lightest;
}
.table tr th {
@apply .text-left .p-2 .bg-white;
}
.table td {
@apply .px-2 .py-3 .border-t;
}