From 84d3e0d7777af1c50f817ca7fc9646615b83dc69 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 25 Apr 2025 17:00:16 +0700 Subject: [PATCH] fix: dark mode manual table --- src/pages/00_manual/ViewPage.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/00_manual/ViewPage.vue b/src/pages/00_manual/ViewPage.vue index bac74c09..05e08147 100644 --- a/src/pages/00_manual/ViewPage.vue +++ b/src/pages/00_manual/ViewPage.vue @@ -339,12 +339,12 @@ async function scrollTo(id: string) { } .markdown :deep(:where(table th)) { - background: #f3f3f7; - border: 1px solid #e1e1e8; + background: var(--surface-2); + border: 1px solid var(--border-color); } .markdown :deep(:where(table td, table th)) { - border: 1px solid #e1e1e8; + border: 1px solid var(--border-color); padding: 0.25rem 1rem; }