From 98a969c112af90c492e022a706f892461f6923f8 Mon Sep 17 00:00:00 2001 From: pengzhanbo Date: Thu, 12 Feb 2026 01:00:03 +0800 Subject: [PATCH] fix(theme): fix overflow scrolling in the tab container nav, close #842 (#847) --- plugins/plugin-md-power/src/client/components/Tabs.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugin-md-power/src/client/components/Tabs.vue b/plugins/plugin-md-power/src/client/components/Tabs.vue index 4381c007..c279dde2 100644 --- a/plugins/plugin-md-power/src/client/components/Tabs.vue +++ b/plugins/plugin-md-power/src/client/components/Tabs.vue @@ -144,7 +144,7 @@ function onTabNavClick(index: number): void { .vp-doc .vp-tabs-nav { padding: 0 12px; - overflow-x: auto; + overflow: auto hidden; white-space: nowrap; background-color: var(--vp-code-tab-bg); box-shadow: inset 0 -1px var(--vp-code-tab-divider);