tfrere commited on
Commit
126473d
1 Parent(s): f0c3124

fix quick filters skeletons

Browse files
frontend/src/pages/LeaderboardPage/components/Leaderboard/components/Filters/QuickFilters.js CHANGED
@@ -55,18 +55,23 @@ export const QuickFiltersSkeleton = () => (
55
  }}
56
  />
57
 
58
- {[1, 2, 3].map((i) => (
59
  <Skeleton
60
  key={i}
61
- width={{ xs: "100%", md: 150 }}
62
  height={32}
63
- sx={{ borderRadius: 1 }}
 
 
 
64
  />
65
  ))}
66
  <Skeleton
67
- width={{ xs: "100%", md: 150 }}
68
  height={32}
69
- sx={{ borderRadius: 1 }}
 
 
 
 
70
  />
71
  </Box>
72
  </Box>
 
55
  }}
56
  />
57
 
58
+ {[1, 2, 3, 4].map((i) => (
59
  <Skeleton
60
  key={i}
 
61
  height={32}
62
+ sx={{
63
+ width: { xs: "100%", md: 120 },
64
+ borderRadius: 1,
65
+ }}
66
  />
67
  ))}
68
  <Skeleton
 
69
  height={32}
70
+ sx={{
71
+ width: { xs: "100%", md: 150 },
72
+ borderRadius: 1,
73
+ ml: 2,
74
+ }}
75
  />
76
  </Box>
77
  </Box>