💄 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.
This commit is contained in:
welpo 2023-08-13 21:59:17 +02:00
parent 275950f97d
commit a6046cd9d7
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

View File

@ -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 {