修改地点选择
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
.common-popup {
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
max-height: 80vh;
|
||||
max-height: calc(100vh - 10px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: theme.$page-background-color;
|
||||
@@ -20,17 +20,18 @@
|
||||
}
|
||||
|
||||
.common-popup__body {
|
||||
padding: 16px;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.common-popup__footer {
|
||||
padding: 12px 16px;
|
||||
padding: 8px 10px 0 10px;
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
border-top: 1px solid #f0f1f5;
|
||||
gap: 8px;
|
||||
background: #FFF;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
|
||||
}
|
||||
|
||||
.common-popup__btn {
|
||||
@@ -41,9 +42,21 @@
|
||||
background: #f5f6f7;
|
||||
color: #1f2329;
|
||||
border: none;
|
||||
width: 154px;
|
||||
height: 36px;
|
||||
border-radius: 12px;
|
||||
border: 0.5px solid rgba(0, 0, 0, 0.06);
|
||||
background: #fff;
|
||||
padding: 4px 10px;
|
||||
}
|
||||
|
||||
.common-popup__btn-confirm {
|
||||
/* 使用按钮组件的 primary 样式 */
|
||||
width: 154px;
|
||||
height: 36px;
|
||||
border: 0.5px solid rgba(0, 0, 0, 0.06);
|
||||
background: #000;
|
||||
border-radius: 12px;
|
||||
padding: 4px 10px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user