diff --git a/src/app/custom-selector/custom-selector.component.html b/src/app/custom-selector/custom-selector.component.html index 216973c..963375e 100644 --- a/src/app/custom-selector/custom-selector.component.html +++ b/src/app/custom-selector/custom-selector.component.html @@ -1,4 +1,4 @@ -
+
{{ header }}: {{ selectedOption.name }} diff --git a/src/app/orders/orders.component.html b/src/app/orders/orders.component.html index 70fb4b6..d0eb476 100644 --- a/src/app/orders/orders.component.html +++ b/src/app/orders/orders.component.html @@ -1,10 +1,10 @@
Order List
- +
+ - + +
@@ -29,8 +29,14 @@
8PC Hot & Crispy
KFC 4 + 4
-
1
4
-
₹ 750
₹ 250
+ +
1
+
4
+ + +
₹ 750
+
₹ 250
+ Paid Online
@@ -46,8 +52,12 @@
KFC 4 + 4
-
1
-
₹ 750
+ +
1
+ + +
₹ 750
+ Paid Online
Completed
@@ -60,8 +70,12 @@
KFC 4 + 4
-
1
-
₹ 750
+ +
1
+ + +
₹ 750
+ Paid Online
Cancelled
@@ -74,8 +88,12 @@
KFC Bucket
-
1
-
₹ 250
+ +
1
+ + +
₹ 250
+ COD
diff --git a/src/app/orders/orders.component.scss b/src/app/orders/orders.component.scss index 2735ed7..7a32e30 100644 --- a/src/app/orders/orders.component.scss +++ b/src/app/orders/orders.component.scss @@ -3,8 +3,25 @@ margin-right: 10%; } - app-custom-selector { - margin: 0 10px; + .selector-container { + display: flex; + + app-custom-selector { + margin: 0 10px; + flex-grow: 1; + + @media screen and (max-width: 1023px) { + margin: 0; + width: 45%; + flex-grow: 0; + } + } + + @media screen and (max-width: 1023px) { + justify-content: space-between; + width: 100%; + margin-bottom: 20px; + } } }