From 4286ca6980f2bb786859b60f5179ad86b6c504b9 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Wed, 3 Jul 2024 15:32:30 -0700 Subject: [PATCH] fix: scrollbar-color not working --- src/css/global/global-styles.css | 3 ++- src/pages/changelog.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/css/global/global-styles.css b/src/css/global/global-styles.css index 8c8df27..6de317b 100644 --- a/src/css/global/global-styles.css +++ b/src/css/global/global-styles.css @@ -4,8 +4,9 @@ Low-specificity, global styles that apply to the whole project: https://cube.fyi/css.html */ + html { - scrollbar-color: var(--color-primary) var(--color-indiglo-800); + scrollbar-color: var(--color-primary) var(--color-surface); } body { diff --git a/src/pages/changelog.md b/src/pages/changelog.md index c7c12c4..756bff8 100644 --- a/src/pages/changelog.md +++ b/src/pages/changelog.md @@ -12,6 +12,7 @@ If preferred, the [commit log is available here][commits]. ## July 3rd 2024 +- Fixed `scrollbar-color` not applying. - Added the [`eleventy-plugin-no-robots`](https://github.com/wkillerud/eleventy-plugin-no-robots) plugin. ## June 22nd 2024