File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
src/components/FindWallet Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -102,15 +102,23 @@ const WalletFilterPersona = ({
102
102
103
103
return (
104
104
< Grid
105
+ css = { {
106
+ "&::-webkit-scrollbar" : {
107
+ height : "4px" ,
108
+ } ,
109
+ "&::-webkit-scrollbar-thumb" : {
110
+ backgroundColor : "darkgray" ,
111
+ } ,
112
+ } }
105
113
gap = { showMobileSidebar ? 2 : 4 }
106
- autoColumns = { { base : "200px " , lg : "minmax(0, 1fr)" } }
114
+ autoColumns = { { base : "220px " , lg : "minmax(0, 1fr)" } }
107
115
templateColumns = {
108
116
showMobileSidebar
109
117
? "repeat(2, 1fr)"
110
- : { base : "200px " , lg : "minmax(0, 1fr)" }
118
+ : { base : "220px " , lg : "minmax(0, 1fr)" }
111
119
}
112
120
mb = { showMobileSidebar ? 4 : 2 }
113
- overflowX = "auto "
121
+ overflowX = "scroll "
114
122
>
115
123
{ personas . map ( ( persona , idx ) => {
116
124
return (
You can’t perform that action at this time.
0 commit comments