Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gyorb/hugo-dusk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyorgy Orban <o.gyorgy@gmail.com>2019-08-30 00:47:48 +0300
committerGyorgy Orban <o.gyorgy@gmail.com>2019-08-30 01:09:59 +0300
commitdab9ebed047b61020958ae4fac8b0e4ead41a6d6 (patch)
treeea2e0c3e028b169b39632b51e2c7e86c0a73bca8
parente01bb44ceef913b20438f31f5cae125d9e27b87d (diff)
change code block background to transparent
code block background with syntax highlight conflicts with the previous background color with this change only the background color from the selected syntax highlight theme should be used
-rw-r--r--layouts/partials/theme-colors.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/theme-colors.css b/layouts/partials/theme-colors.css
index 82ae7ea..8618cec 100644
--- a/layouts/partials/theme-colors.css
+++ b/layouts/partials/theme-colors.css
@@ -12,7 +12,7 @@ pre {
}
code {
- background: {{ .Param "colors.code-quote-bg" }};
+ background-color: transparent;
}
blockquote {