exchange/resources/css/app.css

20 lines
328 B
CSS

@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
.ant-table {
@apply text-gray-900;
}
.ant-table-tbody > tr > td {
@apply border-gray-300;
}
.ant-table-thead > tr > th {
@apply bg-gray-100 font-bold text-gray-900;
}
.ant-table tr:nth-child(even) {
@apply bg-gray-100;
}