fix table height on mobile
Browse files
frontend/src/pages/LeaderboardPage/components/Leaderboard/components/Table/Table.js
CHANGED
|
@@ -484,7 +484,7 @@ const LeaderboardTable = ({
|
|
| 484 |
<Paper
|
| 485 |
sx={{
|
| 486 |
height: "calc(100vh - 380px)",
|
| 487 |
-
minHeight: "
|
| 488 |
resize: "vertical",
|
| 489 |
overflow: "hidden",
|
| 490 |
boxShadow: "none",
|
|
@@ -555,7 +555,7 @@ const LeaderboardTable = ({
|
|
| 555 |
elevation={0}
|
| 556 |
sx={{
|
| 557 |
height: "calc(100vh - 380px)",
|
| 558 |
-
minHeight: "
|
| 559 |
resize: "vertical",
|
| 560 |
overflow: "hidden",
|
| 561 |
boxShadow: "none",
|
|
|
|
| 484 |
<Paper
|
| 485 |
sx={{
|
| 486 |
height: "calc(100vh - 380px)",
|
| 487 |
+
minHeight: "500px",
|
| 488 |
resize: "vertical",
|
| 489 |
overflow: "hidden",
|
| 490 |
boxShadow: "none",
|
|
|
|
| 555 |
elevation={0}
|
| 556 |
sx={{
|
| 557 |
height: "calc(100vh - 380px)",
|
| 558 |
+
minHeight: "500px",
|
| 559 |
resize: "vertical",
|
| 560 |
overflow: "hidden",
|
| 561 |
boxShadow: "none",
|