💄 style: set transparent bg for code in table headers

Changed the background color of the `code` tags within table headers
to transparent to enhance readability and contrast. This ensures
that the code tags in headers remain visually distinct
while not detracting from overall table aesthetics.
main
welpo 2 years ago
parent 275950f97d
commit a6046cd9d7
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

@ -18,6 +18,10 @@ table {
thead tr { thead tr {
background-color: var(--primary-color); background-color: var(--primary-color);
color: var(--hover-color); color: var(--hover-color);
code {
background-color: transparent;
}
} }
tbody { tbody {

Loading…
Cancel
Save