From a69aee6376d5564b68439a5e51c3177f1d6f88af Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Sat, 19 Jun 2021 17:08:51 +0800 Subject: [PATCH] 修复升级后 Tools 在 h5 模式下 rem 转 px 函数报错的问题 --- forms/form/cForm.scss | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/forms/form/cForm.scss b/forms/form/cForm.scss index 02b16a7..fa48852 100644 --- a/forms/form/cForm.scss +++ b/forms/form/cForm.scss @@ -8,6 +8,9 @@ .c-form { width: 100%; .c-form-item { + .at-input__title { + margin-right: 20px; + } .at-input__title--required { position: relative; &::before { @@ -54,10 +57,11 @@ } .c-form-submit { margin-top: 37px; - padding: 0 20px; + padding: 0 20px 30px; [type=primary] { + height: 80px; font-size: 33px; - line-height: 2.2; + line-height: 78px; border: 1PX solid #2093df; background: #2093df; &:not([disabled]):active { @@ -65,6 +69,9 @@ border: 1PX solid #2093df; background: #2093df; } + &::after { + display: none; + } } } } \ No newline at end of file -- Gitblit v1.9.1