From 049cfb7b639f0249d2f96bbe2aa6780c3178841e Mon Sep 17 00:00:00 2001 From: daudix Date: Tue, 13 Feb 2024 16:09:08 +0300 Subject: [PATCH] Disable scrollbar theming for now Scrollbar becomes illegible because Chromium doesn't render the top layer of a page background, which results in a --primary-color being on a same color, this will be resolved when we will be able to actually generate a hex value for the page background, which depends on https://github.com/getzola/zola/pull/2242 --- sass/_main.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/_main.scss b/sass/_main.scss index 51da98d..285b14d 100644 --- a/sass/_main.scss +++ b/sass/_main.scss @@ -7,7 +7,7 @@ html { font-size: 16px; scroll-behavior: smooth; - scrollbar-color: var(--primary-color) transparent; + // scrollbar-color: var(--primary-color) transparent; accent-color: var(--primary-color); overflow-wrap: break-word; }