23 lines
302 B
CSS
23 lines
302 B
CSS
@layer components {
|
|
table {
|
|
@apply w-full;
|
|
}
|
|
|
|
table thead tr {
|
|
@apply text-left;
|
|
}
|
|
|
|
table th {
|
|
@apply pb-3.5 text-sm font-normal uppercase text-gray-500;
|
|
}
|
|
|
|
table th:not(:last-of-type),
|
|
table td:not(:last-of-type) {
|
|
@apply pr-2;
|
|
}
|
|
|
|
table td {
|
|
@apply py-2;
|
|
}
|
|
}
|