From f0ee5102af532c835d2f7c226bafcfdb3e340337 Mon Sep 17 00:00:00 2001 From: Lexcubia Date: Sun, 20 Apr 2025 20:21:58 +0800 Subject: [PATCH] update: Comment out min-width in MainLayout for flexible layout adjustments --- src/layouts/MainLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/MainLayout.vue b/src/layouts/MainLayout.vue index 3cb5d1b..b30bab6 100644 --- a/src/layouts/MainLayout.vue +++ b/src/layouts/MainLayout.vue @@ -16,7 +16,7 @@ import Sidebar from '../components/Sidebar.vue' .main-layout { display: flex; height: 100%; - min-width: 640px; + /* min-width: 640px; */ overflow: hidden; /* 防止内部滚动影响布局 */ }