From f44bcece2ce288ba5ca3227ab79ca669bf27c6f1 Mon Sep 17 00:00:00 2001 From: pengzhanbo Date: Tue, 19 Mar 2024 00:32:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(theme):=20=E5=88=86=E9=A1=B5=20margin-left?= =?UTF-8?q?=20=E9=94=99=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- theme/src/client/components/Blog/Pagination.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/theme/src/client/components/Blog/Pagination.vue b/theme/src/client/components/Blog/Pagination.vue index fecbb5c3..67a3c4f4 100644 --- a/theme/src/client/components/Blog/Pagination.vue +++ b/theme/src/client/components/Blog/Pagination.vue @@ -107,4 +107,10 @@ const emit = defineEmits<{ change: [value: number] }>() background-color: var(--vp-c-bg-alt); } } + +@media (min-width: 1200px) { + .pagination { + margin-left: 0; + } +}