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

19 lines
236 B
Plaintext
Raw Normal View History

2019-11-12 09:45:06 +00:00
.table {
@apply w-full;
2019-11-12 09:45:06 +00:00
th {
2019-10-06 21:29:11 +00:00
@apply bg-gray-200 text-left
2019-11-12 09:45:06 +00:00
}
th,
2019-11-12 09:45:06 +00:00
td {
2019-10-06 21:29:11 +00:00
@apply px-4 py-2 border border-solid border-gray-300
2019-11-12 09:45:06 +00:00
}
}
2019-11-12 09:45:06 +00:00
table.is-striped {
tbody > tr:not(:nth-child(odd)) td {
2019-10-06 21:29:11 +00:00
@apply bg-gray-100
2019-11-12 09:45:06 +00:00
}
}