19 lines
268 B
Plaintext
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;
|
||
|
}
|