Skip to content

Commit 53fd9db

Browse files
Still fixing responsiveness bugs
1 parent 661324b commit 53fd9db

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

components/LoadingSkeleton.jsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,31 +16,23 @@ export default function LoadingSkeleton({
1616
style={[
1717
displayType === "bulk"
1818
? {
19-
width: "100%",
20-
display: "flex",
2119
justifyContent: "space-between",
2220
alignItems: "center",
2321
flexDirection: "column",
24-
gap: 30,
2522
}
2623
: viewMode === "list"
2724
? {
28-
width: "100%",
29-
display: "flex",
3025
justifyContent: "space-between",
3126
alignItems: "center",
3227
flexDirection: "column",
33-
gap: 30,
3428
}
3529
: {
36-
width: "100%",
37-
display: "flex",
38-
justifyContent: "space-between",
30+
justifyContent: "center",
3931
alignItems: "flex-start",
4032
flexDirection: "row",
4133
flexWrap: "wrap",
42-
gap: 30,
4334
},
35+
{ width: "100%", display: "flex", gap: 30 },
4436
]}
4537
>
4638
{Array.from({ length: displayType === "bulk" ? 3 : 6 }).map((_, id) => (

0 commit comments

Comments
 (0)