feat(码单管理添加修改抬头优化完成):

This commit is contained in:
czm 2022-12-21 10:56:25 +08:00
parent 4148531038
commit 464746ef97
3 changed files with 31 additions and 20 deletions

View File

@ -30,6 +30,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
flex: 1;
} }
.form-list-input { .form-list-input {
width: 100%; width: 100%;
@ -54,6 +55,9 @@
flex: 1; flex: 1;
color: white; color: white;
} }
.form-list-right {
flex: 1;
}
.form-list-right input, .form-list-right input,
.form-list-right textarea { .form-list-right textarea {
// flex: 0 0 auto; // flex: 0 0 auto;

View File

@ -8,15 +8,7 @@
padding: 0 24px; padding: 0 24px;
align-items: center; align-items: center;
box-sizing: border-box; box-sizing: border-box;
.name {
width: 78px;
height: 78px;
background: linear-gradient(337deg, #7bb7ff 0%, #4581ff 100%);
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 78px;
}
.desc { .desc {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -34,21 +34,36 @@
border-radius: 50%; border-radius: 50%;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.weight_bottom_btn_con {
position: fixed;
bottom: 20px;
width: 100%;
}
.weight_bottom_btn {
display: flex;
width: 100%;
}
.add-address-save { .add-address-save {
width: 668px; width: 311px;
height: 82px; height: 80px;
background: #68b4ff; border-radius: 44px;
border-radius: 40px; border: 1px solid #087eff;
font-size: 32px; text-align: center;
font-weight: 400; line-height: 80px;
color: #ffffff; font-size: 28px;
display: flex;
align-items: center; &:nth-child(1) {
justify-content: center; color: #337fff;
margin: 620px auto 0; }
&:nth-child(2) {
background-color: #337fffff;
color: #fff;
}
} }
} }