resolve horizontal scrollbar issue

This commit is contained in:
jingrow 2025-12-21 22:56:04 +08:00
parent 1f281fa71f
commit 0f6c3708e9
2 changed files with 7 additions and 10 deletions

View File

@ -58,7 +58,7 @@ body {
#app { #app {
height: 100vh; height: 100vh;
width: 100vw; width: 100%;
} }
/* 滚动条样式 */ /* 滚动条样式 */

View File

@ -1154,10 +1154,8 @@ onUnmounted(() => {
<div class="footer-column"> <div class="footer-column">
<h3 class="footer-title">产品与服务</h3> <h3 class="footer-title">产品与服务</h3>
<ul class="footer-links"> <ul class="footer-links">
<li><a href="#">Jingrow 网页版</a></li> <li><a href="https://jingrow.com" target="_blank">Jingrow</a></li>
<li><a href="#">Jingrow App</a></li> <li><a href="https://jingrowtools.com" target="_blank">Jingrow工具箱</a></li>
<li><a href="#">Jerp</a></li>
<li><a href="#">Jsite</a></li>
</ul> </ul>
</div> </div>
<div class="footer-column"> <div class="footer-column">
@ -1562,7 +1560,7 @@ onUnmounted(() => {
flex-direction: column; flex-direction: column;
background: white; background: white;
position: relative; position: relative;
overflow: visible; /* 改为 visible 允许内容溢出 */ overflow: !important hidden;
} }
/* 应用布局样式(登录后) */ /* 应用布局样式(登录后) */
@ -1715,14 +1713,13 @@ onUnmounted(() => {
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
min-height: 0; min-height: 0;
height: 0; /* 强制 flex 子元素计算高度 */ height: 0;
} }
/* 登录后的 main-content 样式覆盖 */
.content-wrapper .main-content { .content-wrapper .main-content {
height: auto; /* 登录后恢复自动高度 */ height: auto;
min-height: auto; min-height: auto;
overflow: visible; /* 登录后允许内容显示 */ overflow: hidden;
} }
.global-drag-overlay { .global-drag-overlay {