From 45fb4b11ad51bb38306765b11a6747402e382cee Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Sat, 20 Feb 2021 17:37:33 +0800
Subject: [PATCH] fix

---
 hive-app/components/password-input/password-input.vue |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/hive-app/components/password-input/password-input.vue b/hive-app/components/password-input/password-input.vue
index 6630555..13d0f82 100644
--- a/hive-app/components/password-input/password-input.vue
+++ b/hive-app/components/password-input/password-input.vue
@@ -3,7 +3,7 @@
     <block v-for="(item , index) in psdIptNum" :key='index'>
       <view class="psdTtem">
         <text v-if="numLng.length > index" class="psdTtemTxt">
-          <text v-if="plaintext">●</text>
+          <text v-if="plaintext" class="active">●</text>
           <text v-else>{{numLng[index]}}</text>
         </text>
         <text v-if="numLng.length ==index" class="focus_move">|</text>
@@ -45,18 +45,19 @@
     display: flex;
     width: 100%;
     text-align: center;
-    border-bottom: 1px solid #ccc;
-    border-top: 1px solid #ccc;
-    border-right: 1px solid #ccc;
+    /* border-bottom: 1px solid #ccc; */
+    /* border-top: 1px solid #ccc;
+    border-right: 1px solid #ccc; */
   }
 
   .psdTtem {
     flex: 1;
     height: 80rpx;
-    border-left: 1px solid #ccc;
+	border-bottom: 1px solid #EDEAF4;
+	margin: 0 6px;
+    /* border-left: 1px solid #ccc; */
     line-height: 1;
   }
-
   .psdTtemTxt {
     text-align: center;
     line-height: 80rpx;
@@ -64,7 +65,7 @@
   }
 
   .focus_move {
-    color: #E6240F;
+    color: #518EFF;
     font-size: 30rpx;
     line-height: 80rpx;
     animation: focus 0.8s infinite;

--
Gitblit v1.9.1