Update templates/menu.html
Browse files- templates/menu.html +9 -8
templates/menu.html
CHANGED
@@ -101,7 +101,7 @@
|
|
101 |
top: 50%;
|
102 |
right: 10px; /* Position the Add button right next to Customize */
|
103 |
transform: translateY(-50%);
|
104 |
-
background-color: #D32F2F; /* Red color for the Add button */
|
105 |
color: #fff;
|
106 |
border: none;
|
107 |
padding: 6px 18px;
|
@@ -109,16 +109,17 @@
|
|
109 |
display: flex;
|
110 |
align-items: center;
|
111 |
font-size: 14px;
|
|
|
112 |
}
|
113 |
|
114 |
-
/*
|
115 |
-
|
116 |
-
background-color: #
|
117 |
-
|
118 |
-
}
|
119 |
|
120 |
-
|
121 |
-
.
|
122 |
margin-left: 5px; /* Icon spacing */
|
123 |
}
|
124 |
|
|
|
101 |
top: 50%;
|
102 |
right: 10px; /* Position the Add button right next to Customize */
|
103 |
transform: translateY(-50%);
|
104 |
+
background-color: #D32F2F; /* Chilly Red color for the Add button */
|
105 |
color: #fff;
|
106 |
border: none;
|
107 |
padding: 6px 18px;
|
|
|
109 |
display: flex;
|
110 |
align-items: center;
|
111 |
font-size: 14px;
|
112 |
+
box-shadow: none; /* Ensure no box shadow */
|
113 |
}
|
114 |
|
115 |
+
/* Remove hover effect */
|
116 |
+
.add-btn:hover {
|
117 |
+
background-color: #D32F2F; /* No hover color change */
|
118 |
+
border-color: #D32F2F;
|
119 |
+
}
|
120 |
|
121 |
+
/* No hover transition, keeping the same color */
|
122 |
+
.add-btn i {
|
123 |
margin-left: 5px; /* Icon spacing */
|
124 |
}
|
125 |
|