This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/assets/less/components/table.less

19 lines
268 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 .p-2 .border-t;
}