|
@@ -2,7 +2,7 @@
|
|
|
width: 100%;
|
|
|
height: 100vh;
|
|
|
display: flex;
|
|
|
- z-index: 12;
|
|
|
+ z-index: 999;
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
@@ -11,15 +11,36 @@
|
|
|
bottom: 0px;
|
|
|
left: 0px;
|
|
|
visibility: hidden;
|
|
|
- &.show {
|
|
|
- visibility: visible;
|
|
|
- .picker-content {
|
|
|
- transform: translateY(0);
|
|
|
- transition: all 0.4s ease;
|
|
|
- }
|
|
|
+ // &.show {
|
|
|
+ // visibility: visible;
|
|
|
+ // .picker-content {
|
|
|
+ // transform: translateY(0);
|
|
|
+ // transition: all 0.4s ease;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+}
|
|
|
+
|
|
|
+.address-picker-containers {
|
|
|
+ width: 100%;
|
|
|
+ height: 100vh;
|
|
|
+ display: flex;
|
|
|
+ z-index: 999;
|
|
|
+ background: rgba(0, 0, 0, 0.7);
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0px;
|
|
|
+ left: 0px;
|
|
|
+ visibility: visible;
|
|
|
+
|
|
|
+ .picker-content {
|
|
|
+ transform: translateY(0);
|
|
|
+ transition: all 0.4s ease;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
.picker-content {
|
|
|
position: absolute;
|
|
|
width: 100%;
|
|
@@ -29,8 +50,8 @@
|
|
|
transition: all 0.4s ease;
|
|
|
|
|
|
.picker-view-wrap {
|
|
|
- width: 100%;
|
|
|
- height: 500px;
|
|
|
+ width: 100%;
|
|
|
+ height: 500px;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -48,17 +69,18 @@
|
|
|
align-items: center;
|
|
|
|
|
|
.dialog-title {
|
|
|
- color: #333;
|
|
|
+ color: #333;
|
|
|
}
|
|
|
|
|
|
.dialog-button {
|
|
|
- display: inline-block;
|
|
|
- text-align: center;
|
|
|
- font-size: 32px;
|
|
|
- color: #E28E81;
|
|
|
- padding: 30px;
|
|
|
- &.cancel {
|
|
|
- color: #666;
|
|
|
- }
|
|
|
+ display: inline-block;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 32px;
|
|
|
+ color: #E28E81;
|
|
|
+ padding: 30px;
|
|
|
+
|
|
|
+ &.cancel {
|
|
|
+ color: #666;
|
|
|
+ }
|
|
|
}
|
|
|
}
|