添加模块文件

This commit is contained in:
linxd
2025-06-18 22:04:33 +08:00
parent 73db059e7d
commit 0b2891a0e3
23 changed files with 1207 additions and 283 deletions

View File

@ -48,6 +48,11 @@
.filter-form {
flex: 1;
display: flex;
flex-wrap: wrap;
gap: 10px;
max-width: 100%;
.filter-btns {
button {
margin-right: 8px;
@ -71,3 +76,34 @@
}
}
}
// 按钮行样式 - 用于搜索按钮和操作按钮的两端对齐
.button-row {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
.left-buttons {
display: flex;
gap: 8px;
}
.right-buttons {
display: flex;
gap: 8px;
align-items: center;
}
}
// 响应式调整
@media screen and (max-width: 768px) {
.button-row {
flex-direction: column;
gap: 16px;
.left-buttons, .right-buttons {
width: 100%;
justify-content: flex-start;
}
}
}