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
This commit is contained in:
daudix
2024-02-13 16:09:08 +03:00
parent e03bfb8298
commit 049cfb7b63

View File

@ -7,7 +7,7 @@
html { html {
font-size: 16px; font-size: 16px;
scroll-behavior: smooth; scroll-behavior: smooth;
scrollbar-color: var(--primary-color) transparent; // scrollbar-color: var(--primary-color) transparent;
accent-color: var(--primary-color); accent-color: var(--primary-color);
overflow-wrap: break-word; overflow-wrap: break-word;
} }