Skip to content

Commit 98281f7

Browse files
authored
Fix table css on mobile (#3041)
1 parent 34ddf07 commit 98281f7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

assets/style.css

+11
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@
1717
margin-top: -75px;
1818
}
1919

20+
21+
/* Fix table on mobile */
22+
@media screen and (max-width: 768px) {
23+
table {
24+
display: block !important;
25+
max-width: 95vw !important;
26+
overflow-x: auto !important;
27+
white-space: nowrap !important;
28+
}
29+
}
30+
2031
article h2 {
2132
@apply text-sc-gray-1 text-sc-title-2 font-bold mb-4 mt-6;
2233
}

0 commit comments

Comments
 (0)