Update templates/menu.html
Browse files- templates/menu.html +24 -0
templates/menu.html
CHANGED
@@ -27,6 +27,7 @@
|
|
27 |
margin: auto;
|
28 |
display: flex;
|
29 |
flex-direction: column;
|
|
|
30 |
}
|
31 |
.menu-image {
|
32 |
height: 200px; /* Fixed height */
|
@@ -61,6 +62,29 @@
|
|
61 |
border-color: #ffffff;
|
62 |
box-shadow: none;
|
63 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
.view-cart-container {
|
65 |
position: fixed;
|
66 |
bottom: 20px;
|
|
|
27 |
margin: auto;
|
28 |
display: flex;
|
29 |
flex-direction: column;
|
30 |
+
position: relative;
|
31 |
}
|
32 |
.menu-image {
|
33 |
height: 200px; /* Fixed height */
|
|
|
62 |
border-color: #ffffff;
|
63 |
box-shadow: none;
|
64 |
}
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
.customize-btn {
|
70 |
+
position: absolute;
|
71 |
+
top: 50%;
|
72 |
+
right: 10px;
|
73 |
+
transform: translateY(-50%);
|
74 |
+
z-index: 2;
|
75 |
+
opacity: 0.9;
|
76 |
+
padding: 6px 12px;
|
77 |
+
}
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
|
85 |
+
|
86 |
+
|
87 |
+
|
88 |
.view-cart-container {
|
89 |
position: fixed;
|
90 |
bottom: 20px;
|