fix(ui): 开关可见与卡片不拉伸

This commit is contained in:
2025-12-17 21:14:54 +08:00
parent db4201a269
commit 2f5940d339
18 changed files with 42 additions and 35 deletions

View File

@@ -824,6 +824,7 @@ onBeforeUnmount(() => {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 12px;
align-items: start;
}
.account-card {

View File

@@ -544,6 +544,7 @@ onMounted(async () => {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 12px;
align-items: start;
}
.schedule-card {
@@ -592,8 +593,13 @@ onMounted(async () => {
flex-wrap: wrap;
}
.page :deep(.el-switch.is-disabled) {
opacity: 0.88;
.schedule-switch :deep(.el-switch) {
--el-switch-off-color: rgba(17, 24, 39, 0.22);
--el-switch-border-color: rgba(17, 24, 39, 0.22);
}
.schedule-switch :deep(.el-switch.is-disabled) {
opacity: 1;
}
.logs {