From 507d77a5764f707555c3b6eccf6080795f03d78c Mon Sep 17 00:00:00 2001 From: yuetsh <517252939@qq.com> Date: Tue, 5 May 2026 05:53:59 -0600 Subject: [PATCH] fix in mobile --- src/oj/problem/list.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/oj/problem/list.vue b/src/oj/problem/list.vue index 977aa43..c802fdb 100644 --- a/src/oj/problem/list.vue +++ b/src/oj/problem/list.vue @@ -321,4 +321,14 @@ function rowProps(row: ProblemFiltered) { max-width: 720px; min-width: 0; } + +@media (max-width: 768px) { + .problem-list-toolbar { + grid-template-columns: minmax(0, 1fr); + } + + .problem-list-toolbar :deep(.n-space) { + width: 100%; + } +}