Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +7 -7
templates/menu.html
CHANGED
@@ -244,21 +244,21 @@
|
|
244 |
/* Menu item images and card styling */
|
245 |
.menu-card {
|
246 |
max-width: 100%;
|
247 |
-
border-radius:
|
248 |
overflow: hidden;
|
249 |
background-color: #fff;
|
250 |
margin: auto;
|
251 |
}
|
252 |
|
253 |
.menu-image {
|
254 |
-
height:
|
255 |
width: 100%;
|
256 |
object-fit: cover;
|
257 |
-
border-radius:
|
258 |
}
|
259 |
|
260 |
.card-body {
|
261 |
-
padding:
|
262 |
}
|
263 |
|
264 |
/* Responsive grid for 3 columns */
|
@@ -267,15 +267,15 @@
|
|
267 |
max-width: 100%;
|
268 |
}
|
269 |
.col-md-4 {
|
270 |
-
flex: 0 0
|
271 |
-
max-width:
|
272 |
}
|
273 |
}
|
274 |
|
275 |
/* Adjusting the appearance of the category and section headers */
|
276 |
h3 {
|
277 |
margin-top: 20px;
|
278 |
-
font-size: 1.
|
279 |
font-weight: bold;
|
280 |
}
|
281 |
|
|
|
244 |
/* Menu item images and card styling */
|
245 |
.menu-card {
|
246 |
max-width: 100%;
|
247 |
+
border-radius: 10px;
|
248 |
overflow: hidden;
|
249 |
background-color: #fff;
|
250 |
margin: auto;
|
251 |
}
|
252 |
|
253 |
.menu-image {
|
254 |
+
height: 100px;
|
255 |
width: 100%;
|
256 |
object-fit: cover;
|
257 |
+
border-radius: 10px 10px 0 0;
|
258 |
}
|
259 |
|
260 |
.card-body {
|
261 |
+
padding: 10px;
|
262 |
}
|
263 |
|
264 |
/* Responsive grid for 3 columns */
|
|
|
267 |
max-width: 100%;
|
268 |
}
|
269 |
.col-md-4 {
|
270 |
+
flex: 0 0 30%; /* Reduced the width of each card */
|
271 |
+
max-width: 30%;
|
272 |
}
|
273 |
}
|
274 |
|
275 |
/* Adjusting the appearance of the category and section headers */
|
276 |
h3 {
|
277 |
margin-top: 20px;
|
278 |
+
font-size: 1.1rem; /* Slightly smaller font size */
|
279 |
font-weight: bold;
|
280 |
}
|
281 |
|