1 Commits
Author SHA1 Message Date
valknarandClaude Sonnet 5 d96a28f6cc Bump to 0.9.6
CI / Static checks (push) Successful in 1m9s
CI / Build and push image (push) Successful in 1m3s
- 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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BuWtppPBizG2NQRa31FCRa
2026-09-05 19:45:17 +02:00
2 changed files with 24 additions and 1 deletions
+23
View File
@@ -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. */
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "sexy",
"version": "0.9.5",
"version": "0.9.6",
"private": true,
"scripts": {
"dev": "next dev",