优化底部操作栏样式,调整布局和背景色,并在分类编辑页面添加安全距离
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 23s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 2s

This commit is contained in:
孙诚
2026-01-05 19:07:10 +08:00
parent 826f139fad
commit baa77341bc
5 changed files with 30 additions and 30 deletions

View File

@@ -27,7 +27,7 @@
</div>
<!-- 底部操作按钮 -->
<div class="action-bar">
<div class="bottom-button">
<van-button
type="primary"
:loading="classifying"
@@ -351,27 +351,6 @@ onMounted(async () => {
font-weight: 500;
}
/* 底部操作栏 */
.action-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: flex;
gap: 12px;
padding: 12px;
background-color: var(--van-background-2, #fff);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
z-index: 100;
}
@media (prefers-color-scheme: dark) {
.action-bar {
background-color: var(--van-background-2, #2c2c2c);
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}
}
.action-btn {
flex: 1;
height: 44px;