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/resources/css/components/table.css

19 lines
239 B
CSS
Raw Normal View History

2019-04-19 00:09:56 +00:00
.table {
2019-05-09 17:59:20 +00:00
@apply w-full;
2019-04-19 00:09:56 +00:00
th {
@apply bg-gray-200 text-left;
}
th,
td {
@apply px-4 py-2 border border-solid border-gray-300;
}
}
table.is-striped {
tbody > tr:not(:nth-child(odd)) td {
@apply bg-gray-100;
}
}