Explorar el Código

update button css

Sherry hace 1 año
padre
commit
3cc69beeb2

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

11451
   padding: 0.5em 0.55em;
11451
   padding: 0.5em 0.55em;
11452
 }
11452
 }
11453
 .passport__edit {
11453
 .passport__edit {
11454
+  position: fixed;
11455
+  left: 50%;
11456
+  transform: translateX(-50%);
11457
+  bottom: 5em;
11454
   width: 89%;
11458
   width: 89%;
11455
   margin: 0 auto;
11459
   margin: 0 auto;
11456
   box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.2);
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
 .methods p {
11470
 .methods p {

+ 1
- 1
src/fe/healthpassport/css/all.css.map
La diferencia del archivo ha sido suprimido porque es demasiado grande
Ver fichero


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

127
         }
127
         }
128
     }
128
     }
129
     &__edit {
129
     &__edit {
130
+        position: fixed;
131
+        left: 50%;
132
+        transform: translateX(-50%);
133
+        bottom: 5em;
130
         width: 89%;
134
         width: 89%;
131
         margin: 0 auto;
135
         margin: 0 auto;
132
         box-shadow: 0 0.2em 0.5em rgba(#000, 0.2);
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 fichero

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