fix(ui): 开关可见与布局对齐

This commit is contained in:
2025-12-17 22:03:15 +08:00
parent 2f5940d339
commit 2ef0a10d6f
23 changed files with 100 additions and 51 deletions

View File

@@ -777,10 +777,11 @@ onBeforeUnmount(() => {
.panel-head {
display: flex;
align-items: flex-start;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 10px;
flex-wrap: wrap;
}
.panel-title {
@@ -913,4 +914,22 @@ onBeforeUnmount(() => {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.panel-actions {
width: 100%;
justify-content: flex-end;
}
.toolbar-left,
.toolbar-middle,
.toolbar-right {
width: 100%;
}
.toolbar-right {
margin-left: 0;
justify-content: flex-end;
}
}
</style>