From f97bff5a5e292123260a95612b65bc36c3d4342d Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Thu, 30 Sep 2021 11:34:27 +0800
Subject: [PATCH] 优化图片上传组件,屏蔽非图片格式,增加限制数量

---
 common/custom.scss |   33 +++++++++++++++++++++++++++------
 1 files changed, 27 insertions(+), 6 deletions(-)

diff --git a/common/custom.scss b/common/custom.scss
index e96fcb2..9fbb0f2 100644
--- a/common/custom.scss
+++ b/common/custom.scss
@@ -13,11 +13,6 @@
         font-size: inherit;
         font-family: -apple-system-font, Helvetica Neue, sans-serif;
     }
-    .at-nav-bar {
-        .at-nav-bar__title {
-            font-size: 42px;
-        }
-    }
     .at-button {
         display: inline-block;
         &.at-button--full {
@@ -78,11 +73,37 @@
             font-size: 0;
             .at-tabs-pane {
                 height: 100%;
-                margin-right: 2%;
                 font-size: 30px;
             }
         }
     }
+    .at-radio {
+        .at-radio__option {
+            padding-left: 0;
+        }
+        .at-radio__option-wrap {
+            padding-left: 32px;
+        }
+        .at-radio__icon {
+            visibility: visible;
+            &.at-radio__icon--checked {
+                .at-icon {
+                    background: #2093df;
+                    border-color: #2093df;
+                }
+            }
+            .at-icon {
+                color: #fff;
+                border: #bbb 1px solid;
+                border-radius: 50%;
+                padding: 5px;
+            }
+        }
+        &::before,
+        &::after {
+            display: none;
+        }
+    }
 }
 
 page {

--
Gitblit v1.9.1