Álvaro Valenzuela Valdes commited on
Commit ·
8a01da9
1
Parent(s): 71e92c7
style: Global scrollbar reset and Premium 2026 aesthetics
Browse files- frontend/globals.css +23 -20
frontend/globals.css
CHANGED
|
@@ -63,37 +63,40 @@
|
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
-
/*
|
| 67 |
-
|
| 68 |
-
width:
|
| 69 |
-
|
| 70 |
-
}
|
| 71 |
-
.custom-scrollbar::-webkit-scrollbar-track {
|
| 72 |
-
background: transparent;
|
| 73 |
-
}
|
| 74 |
-
.custom-scrollbar::-webkit-scrollbar-thumb {
|
| 75 |
-
background: linear-gradient(to bottom, transparent, #a855f7, transparent);
|
| 76 |
-
border-radius: 20px;
|
| 77 |
-
box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
|
| 78 |
-
}
|
| 79 |
-
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
| 80 |
-
background: #a855f7;
|
| 81 |
-
width: 4px;
|
| 82 |
}
|
| 83 |
|
| 84 |
-
/* Global scrollbar refinement */
|
| 85 |
::-webkit-scrollbar {
|
| 86 |
-
width:
|
|
|
|
| 87 |
}
|
|
|
|
| 88 |
::-webkit-scrollbar-track {
|
| 89 |
background: transparent;
|
| 90 |
}
|
|
|
|
| 91 |
::-webkit-scrollbar-thumb {
|
| 92 |
-
background: rgba(
|
| 93 |
border-radius: 10px;
|
|
|
|
| 94 |
}
|
|
|
|
| 95 |
::-webkit-scrollbar-thumb:hover {
|
| 96 |
-
background: rgba(168, 85, 247, 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
}
|
| 98 |
|
| 99 |
::selection {
|
|
|
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
| 66 |
+
/* Global Scrollbar Reset & Premium 2026 Styling */
|
| 67 |
+
* {
|
| 68 |
+
scrollbar-width: thin;
|
| 69 |
+
scrollbar-color: rgba(168, 85, 247, 0.3) transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
}
|
| 71 |
|
|
|
|
| 72 |
::-webkit-scrollbar {
|
| 73 |
+
width: 3px;
|
| 74 |
+
height: 3px;
|
| 75 |
}
|
| 76 |
+
|
| 77 |
::-webkit-scrollbar-track {
|
| 78 |
background: transparent;
|
| 79 |
}
|
| 80 |
+
|
| 81 |
::-webkit-scrollbar-thumb {
|
| 82 |
+
background: linear-gradient(180deg, rgba(168, 85, 247, 0.5) 0%, rgba(99, 102, 241, 0.5) 100%);
|
| 83 |
border-radius: 10px;
|
| 84 |
+
border: none;
|
| 85 |
}
|
| 86 |
+
|
| 87 |
::-webkit-scrollbar-thumb:hover {
|
| 88 |
+
background: linear-gradient(180deg, rgba(168, 85, 247, 0.8) 0%, rgba(99, 102, 241, 0.8) 100%);
|
| 89 |
+
width: 5px;
|
| 90 |
+
}
|
| 91 |
+
|
| 92 |
+
/* Specific for the sidebar to ensure absolute minimalism */
|
| 93 |
+
.custom-scrollbar::-webkit-scrollbar {
|
| 94 |
+
width: 2px;
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
.custom-scrollbar::-webkit-scrollbar-thumb {
|
| 98 |
+
background: #a855f7;
|
| 99 |
+
box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
|
| 100 |
}
|
| 101 |
|
| 102 |
::selection {
|