Álvaro Valenzuela Valdes commited on
Commit
8a01da9
·
1 Parent(s): 71e92c7

style: Global scrollbar reset and Premium 2026 aesthetics

Browse files
Files changed (1) hide show
  1. frontend/globals.css +23 -20
frontend/globals.css CHANGED
@@ -63,37 +63,40 @@
63
  }
64
  }
65
 
66
- /* Custom scrollbar Premium 2026 */
67
- .custom-scrollbar::-webkit-scrollbar {
68
- width: 2px;
69
- height: 0px;
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: 4px;
 
87
  }
 
88
  ::-webkit-scrollbar-track {
89
  background: transparent;
90
  }
 
91
  ::-webkit-scrollbar-thumb {
92
- background: rgba(255, 255, 255, 0.05);
93
  border-radius: 10px;
 
94
  }
 
95
  ::-webkit-scrollbar-thumb:hover {
96
- background: rgba(168, 85, 247, 0.2);
 
 
 
 
 
 
 
 
 
 
 
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 {