From a6046cd9d7b2ee72dd91064d9854e7f903d1b197 Mon Sep 17 00:00:00 2001 From: welpo Date: Sun, 13 Aug 2023 21:59:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style:=20set=20transparent=20bg?= =?UTF-8?q?=20for=20code=20in=20table=20headers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- sass/parts/_table.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sass/parts/_table.scss b/sass/parts/_table.scss index 01e49e6d0..0ffd3f2b8 100644 --- a/sass/parts/_table.scss +++ b/sass/parts/_table.scss @@ -18,6 +18,10 @@ table { thead tr { background-color: var(--primary-color); color: var(--hover-color); + + code { + background-color: transparent; + } } tbody {