Ver código fonte

update button css

Sherry 1 ano atrás
pai
commit
3cc69beeb2

+ 11
- 0
src/fe/healthpassport/css/all.css Ver arquivo

@@ -11451,9 +11451,20 @@ p {
11451 11451
   padding: 0.5em 0.55em;
11452 11452
 }
11453 11453
 .passport__edit {
11454
+  position: fixed;
11455
+  left: 50%;
11456
+  transform: translateX(-50%);
11457
+  bottom: 5em;
11454 11458
   width: 89%;
11455 11459
   margin: 0 auto;
11456 11460
   box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.2);
11461
+  background-color: rgba(255, 255, 255, 0.8);
11462
+  border: 0.25em solid #2AACE2;
11463
+}
11464
+.passport__edit p {
11465
+  color: #2AACE2;
11466
+  font-weight: 500;
11467
+  letter-spacing: 0.15em;
11457 11468
 }
11458 11469
 
11459 11470
 .methods p {

+ 1
- 1
src/fe/healthpassport/css/all.css.map
Diferenças do arquivo suprimidas por serem muito extensas
Ver arquivo


+ 11
- 0
src/fe/healthpassport/css/page/_passport.scss Ver arquivo

@@ -127,8 +127,19 @@
127 127
         }
128 128
     }
129 129
     &__edit {
130
+        position: fixed;
131
+        left: 50%;
132
+        transform: translateX(-50%);
133
+        bottom: 5em;
130 134
         width: 89%;
131 135
         margin: 0 auto;
132 136
         box-shadow: 0 0.2em 0.5em rgba(#000, 0.2);
137
+        background-color: rgba($c-white, 0.8);
138
+        border: 0.25em solid $c-blue-bright;
139
+        p {
140
+            color: $c-blue-bright;
141
+            font-weight: 500;
142
+            letter-spacing: 0.15em;
143
+        }
133 144
     }
134 145
 }

+ 0
- 5
src/fe/healthpassport/lib/photoHelper.js Ver arquivo

@@ -1,8 +1,3 @@
1
-/**
2
- *
3
- * @authors Eric Hsiao
4
- *
5
- */
6 1
 
7 2
 var photoHelper = function () {
8 3