修改提交

This commit is contained in:
筱野
2025-08-20 23:08:42 +08:00
parent 3a45212737
commit c32c86051c
12 changed files with 197 additions and 28 deletions

View File

@@ -0,0 +1,49 @@
@use '~@/scss/themeColor.scss' as theme;
.common-popup {
padding: 0;
box-sizing: border-box;
max-height: 80vh;
display: flex;
flex-direction: column;
background-color: theme.$page-background-color;
.common-popup__header {
padding: 12px 16px;
font-size: 16px;
font-weight: 600;
color: #1f2329;
border-bottom: 1px solid #f0f1f5;
}
.common-popup__title {
display: inline-block;
}
.common-popup__body {
padding: 16px;
overflow: auto;
-webkit-overflow-scrolling: touch;
flex: 1 1 auto;
}
.common-popup__footer {
padding: 12px 16px;
display: flex;
gap: 12px;
border-top: 1px solid #f0f1f5;
}
.common-popup__btn {
flex: 1;
}
.common-popup__btn-cancel {
background: #f5f6f7;
color: #1f2329;
border: none;
}
.common-popup__btn-confirm {
/* 使用按钮组件的 primary 样式 */
}
}