|
@@ -1,7 +1,22 @@
|
|
|
page-order {
|
|
|
|
|
|
ion-content > div:nth-child(2) {
|
|
|
-
|
|
|
+ overflow-y: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ form {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: stretch;
|
|
|
+ }
|
|
|
+
|
|
|
+ ion-list {
|
|
|
+ overflow-x: hidden;
|
|
|
+ overflow-y: auto;
|
|
|
+ height: 100%;
|
|
|
+ flex-grow: 1;
|
|
|
}
|
|
|
|
|
|
ion-item {
|
|
@@ -15,7 +30,6 @@ page-order {
|
|
|
|
|
|
form > ion-item > div, form > ion-item-divider {
|
|
|
border-bottom: 0 !important;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
ion-list > ion-item > div > div:nth-child(2) {
|
|
@@ -24,7 +38,7 @@ page-order {
|
|
|
align-content: center;
|
|
|
}
|
|
|
|
|
|
- ion-list > ion-item > div > div:nth-child(2) > button {
|
|
|
+ ion-list > ion-item > div > div:nth-last-child(1) > button {
|
|
|
height: 24px !important;
|
|
|
padding: 0 8px !important;
|
|
|
border-radius: 12px !important;
|
|
@@ -51,4 +65,24 @@ page-order {
|
|
|
ion-input > input {
|
|
|
margin: 8px !important;
|
|
|
}
|
|
|
+
|
|
|
+ form > ion-item:nth-last-child(1) {
|
|
|
+ padding-right: 65px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .empty-cart {
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .empty-cart > div > div > ion-label {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .empty-cart > div > div > ion-label > h2 {
|
|
|
+ font-size: 10pt;
|
|
|
+ color: #d3d3d3;
|
|
|
+ padding-bottom: 25px;
|
|
|
+ }
|
|
|
}
|