|
|
|
|
|
by colejohnson66
966 days ago
|
|
Use PostCSS: .myFancyTable td {
@apply p-4;
}
The advantage of Tailwind, IMO, is that styles for one-off components (like a breadcrumb bar) can just be written inline instead of in a separate file. But reused components like table cells should be using CSS selectors. |
|