Compare commits
1
Commits
5a6da7e507
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d96a28f6cc |
@@ -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
|
/* Animated signature-sweep background - sits behind everything; cards use
|
||||||
.bp-glass (translucent + blurred) so it shines through instead of being
|
.bp-glass (translucent + blurred) so it shines through instead of being
|
||||||
fully hidden behind an opaque card surface. */
|
fully hidden behind an opaque card surface. */
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "sexy",
|
"name": "sexy",
|
||||||
"version": "0.9.5",
|
"version": "0.9.6",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user