修复微信号页面 列表项目被内容撑大溢出屏幕照成左右滚动的问题

This commit is contained in:
柳清爽
2025-04-02 17:14:26 +08:00
parent e834e99a6b
commit 6b47cb942c
3 changed files with 40 additions and 23 deletions

View File

@@ -58,3 +58,20 @@
}
}
/* 修复微信号页面横向滚动问题 */
body {
overflow-x: hidden;
}
/* 优化微信账号列表项布局 */
.Card[class*="wechat-accounts"] {
max-width: 100%;
overflow-x: hidden;
}
/* 确保进度条组件不会溢出 */
.Progress {
flex-shrink: 1;
min-width: 0;
}