mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
13 lines
242 B
CSS
13 lines
242 B
CSS
.prose table {
|
|
@apply block overflow-x-auto text-base;
|
|
thead tr {
|
|
@apply bg-gray-light-300 dark:bg-gray-dark-300
|
|
}
|
|
tbody tr:nth-of-type(2n) {
|
|
@apply bg-gray-light-200 dark:bg-gray-dark-200
|
|
}
|
|
th, td {
|
|
@apply p-2;
|
|
}
|
|
}
|