From d96a28f6cc40a55e0a187449efce350182772f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 5 Sep 2026 19:45:17 +0200 Subject: [PATCH] Bump to 0.9.6 - Themed scrollbar: thumb/track colors follow --border/--muted-foreground so the scrollbar matches light/dark instead of the OS default Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01BuWtppPBizG2NQRa31FCRa --- app/globals.css | 23 +++++++++++++++++++++++ package.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/app/globals.css b/app/globals.css index fa66188..3c32a11 100644 --- a/app/globals.css +++ b/app/globals.css @@ -134,6 +134,29 @@ } } +/* Themed scrollbar - follows --border/--muted-foreground so it swaps with + light/dark like everything else, instead of the OS-default bar. */ +* { + scrollbar-width: thin; + scrollbar-color: var(--muted-foreground) transparent; +} +*::-webkit-scrollbar { + width: 10px; + height: 10px; +} +*::-webkit-scrollbar-track { + background: transparent; +} +*::-webkit-scrollbar-thumb { + background-color: var(--border); + border-radius: 999px; + border: 2px solid transparent; + background-clip: padding-box; +} +*::-webkit-scrollbar-thumb:hover { + background-color: var(--muted-foreground); +} + /* Animated signature-sweep background - sits behind everything; cards use .bp-glass (translucent + blurred) so it shines through instead of being fully hidden behind an opaque card surface. */ diff --git a/package.json b/package.json index aa276c0..d6460fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sexy", - "version": "0.9.5", + "version": "0.9.6", "private": true, "scripts": { "dev": "next dev",