From 731ce8599d3e50c1aa99fbad8cb610f90b76b9b6 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Sat, 12 Apr 2025 16:58:08 -0400 Subject: [PATCH] Allow scrolling on .settings-content (#3427) Co-authored-by: Benjamin Lu --- src/components/dialog/content/SettingDialogContent.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/dialog/content/SettingDialogContent.vue b/src/components/dialog/content/SettingDialogContent.vue index c71397e9f..352ecd6b4 100644 --- a/src/components/dialog/content/SettingDialogContent.vue +++ b/src/components/dialog/content/SettingDialogContent.vue @@ -293,6 +293,10 @@ watch(activeCategory, (_, oldValue) => { overflow: hidden; } +.settings-content { + overflow-x: auto; +} + @media (max-width: 768px) { .settings-container { flex-direction: column;