File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -982,7 +982,20 @@ export default function App() {
982
982
< div className = "mt-6" >
983
983
< h4 className = "text-md opacity-80" > Session History</ h4 >
984
984
< div className = "text-xs opacity-70" > Click any session to see details • { history . length } total sessions</ div >
985
- < div className = { ` mt-2 divide-y divide-gray-200/30 ${ ! isMobile ? 'h-48 overflow-y-auto ' : 'overflow-y-auto' } ` } style = { { scrollbarWidth : 'none' , scrollbarColor : 'transparent' } } >
985
+ < div className = { ` mt-2 divide-y divide-gray-200/30 ${ ! isMobile ? 'h-48 overflow-y-auto ' : 'overflow-y-auto' } ` } style = { {
986
+
987
+ WebkitScrollbar : '6px' , /* width of the scrollbar */
988
+ WebkitScrollbarTrack : {
989
+ background : 'transparent' , // Makes the track transparent
990
+ } ,
991
+ WebkitScrollbarThumb : {
992
+ backgroundColor : 'lightgray' , // Color of the draggable part
993
+ borderRadius : '2px' ,
994
+ } ,
995
+ WebkitScrollbarButton : {
996
+ display : 'none' ,
997
+ } ,
998
+ } } >
986
999
{ history . length === 0 ? (
987
1000
< div className = "text-sm opacity-60 p-3" > No sessions completed yet.</ div >
988
1001
) : (
Original file line number Diff line number Diff line change 90
90
.celebration-pulse {
91
91
animation : celebrationPulse 2s ease-in-out infinite;
92
92
}
93
+
You can’t perform that action at this time.
0 commit comments