diff --git a/src/components/FromList/index.scss b/src/components/FromList/index.scss index 5d1d331..76921ea 100644 --- a/src/components/FromList/index.scss +++ b/src/components/FromList/index.scss @@ -30,6 +30,7 @@ display: flex; justify-content: space-between; align-items: center; + flex: 1; } .form-list-input { width: 100%; @@ -54,6 +55,9 @@ flex: 1; color: white; } + .form-list-right { + flex: 1; + } .form-list-right input, .form-list-right textarea { // flex: 0 0 auto; diff --git a/src/pages/weightList/components/companyItem/index.module.scss b/src/pages/weightList/components/companyItem/index.module.scss index aed10d4..e13df9c 100644 --- a/src/pages/weightList/components/companyItem/index.module.scss +++ b/src/pages/weightList/components/companyItem/index.module.scss @@ -8,15 +8,7 @@ padding: 0 24px; align-items: center; 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 { display: flex; flex-direction: column; diff --git a/src/pages/weightListAdd/index.scss b/src/pages/weightListAdd/index.scss index 4fe5c03..253b449 100644 --- a/src/pages/weightListAdd/index.scss +++ b/src/pages/weightListAdd/index.scss @@ -34,21 +34,36 @@ border-radius: 50%; box-sizing: border-box; display: flex; + align-items: center; + justify-content: center; } + .weight_bottom_btn_con { + position: fixed; + bottom: 20px; + width: 100%; + } + .weight_bottom_btn { + display: flex; + width: 100%; + } .add-address-save { - width: 668px; - height: 82px; - background: #68b4ff; - border-radius: 40px; - font-size: 32px; - font-weight: 400; - color: #ffffff; - display: flex; - align-items: center; - justify-content: center; - margin: 620px auto 0; + width: 311px; + height: 80px; + border-radius: 44px; + border: 1px solid #087eff; + text-align: center; + line-height: 80px; + font-size: 28px; + + &:nth-child(1) { + color: #337fff; + } + &:nth-child(2) { + background-color: #337fffff; + color: #fff; + } } }