fix(css): enable table horizontal scroll at 768px breakpoint

Moves .table-wrap overflow-x rule from the 680px breakpoint to 768px
so the table becomes scrollable before it gets too narrow to read.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-03-23 00:09:06 +08:00
parent 88031d78a5
commit 3395b2e428

View File

@@ -998,6 +998,10 @@ th[data-sort].sort-asc::after {
.tag {
padding: 0.5rem 0.85rem;
}
.table-wrap {
overflow-x: auto;
}
}
@media (max-width: 680px) {
@@ -1047,10 +1051,6 @@ th[data-sort].sort-asc::after {
border-radius: 1.25rem;
}
.table-wrap {
overflow-x: auto;
}
.table thead th {
position: static;
}