Spaces:
Build error
Build error
Update static/styles.css
Browse files- static/styles.css +9 -7
static/styles.css
CHANGED
|
@@ -377,32 +377,34 @@ body {
|
|
| 377 |
border: 1px solid #ddd;
|
| 378 |
border-radius: 5px;
|
| 379 |
background-color: #f9f9f9;
|
|
|
|
|
|
|
| 380 |
}
|
| 381 |
|
| 382 |
.selected-customization-ingredients textarea {
|
| 383 |
-
width: 100%;
|
| 384 |
-
height: 80px;
|
| 385 |
padding: 10px;
|
| 386 |
border: 1px solid #ccc;
|
| 387 |
border-radius: 5px;
|
| 388 |
font-size: 14px;
|
| 389 |
-
box-sizing: border-box;
|
| 390 |
margin-bottom: 10px;
|
| 391 |
}
|
| 392 |
|
| 393 |
.submit-customization-button {
|
| 394 |
-
background-color: #4CAF50;
|
| 395 |
color: white;
|
| 396 |
padding: 10px 20px;
|
| 397 |
border: none;
|
| 398 |
border-radius: 5px;
|
| 399 |
cursor: pointer;
|
| 400 |
font-size: 16px;
|
| 401 |
-
display: block;
|
| 402 |
-
width: 100%;
|
| 403 |
margin-top: 10px;
|
| 404 |
}
|
| 405 |
|
| 406 |
.submit-customization-button:hover {
|
| 407 |
-
background-color: #45a049;
|
| 408 |
}
|
|
|
|
| 377 |
border: 1px solid #ddd;
|
| 378 |
border-radius: 5px;
|
| 379 |
background-color: #f9f9f9;
|
| 380 |
+
box-sizing: border-box; /* Ensure padding and border are included in the width calculation */
|
| 381 |
+
overflow: visible; /* Make sure content isn't hidden */
|
| 382 |
}
|
| 383 |
|
| 384 |
.selected-customization-ingredients textarea {
|
| 385 |
+
width: 100%;
|
| 386 |
+
height: 80px; /* You can adjust the height based on preference */
|
| 387 |
padding: 10px;
|
| 388 |
border: 1px solid #ccc;
|
| 389 |
border-radius: 5px;
|
| 390 |
font-size: 14px;
|
| 391 |
+
box-sizing: border-box;
|
| 392 |
margin-bottom: 10px;
|
| 393 |
}
|
| 394 |
|
| 395 |
.submit-customization-button {
|
| 396 |
+
background-color: #4CAF50;
|
| 397 |
color: white;
|
| 398 |
padding: 10px 20px;
|
| 399 |
border: none;
|
| 400 |
border-radius: 5px;
|
| 401 |
cursor: pointer;
|
| 402 |
font-size: 16px;
|
| 403 |
+
display: block;
|
| 404 |
+
width: 100%;
|
| 405 |
margin-top: 10px;
|
| 406 |
}
|
| 407 |
|
| 408 |
.submit-customization-button:hover {
|
| 409 |
+
background-color: #45a049;
|
| 410 |
}
|