This commit is contained in:
Leo
2026-01-05 18:32:29 +08:00
parent 1a4e56bfed
commit a3291f7a31
22 changed files with 3180 additions and 23 deletions

View File

@@ -151,4 +151,39 @@ export default {
background-color: #ccc;
margin: 3px auto;
}
// 移动端优化
@media (max-width: 768px) {
.top-right-btn {
float: none;
margin-bottom: 10px;
width: 100%;
display: flex;
justify-content: flex-start;
gap: 8px;
flex-wrap: wrap;
.el-button {
min-width: 44px;
height: 44px;
padding: 0;
&.el-button--mini {
min-width: 40px;
height: 40px;
}
}
}
::v-deep .el-dialog {
width: 95% !important;
margin: 5vh auto !important;
.el-transfer {
display: flex;
flex-direction: column;
gap: 15px;
}
}
}
</style>