nagasurendra commited on
Commit
405f8e0
·
verified ·
1 Parent(s): 8ad9f9a

Update static/styles.css

Browse files
Files changed (1) hide show
  1. 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%; /* Ensures the textarea takes the full width of the container */
384
- height: 80px; /* Adjust the height based on your preference */
385
  padding: 10px;
386
  border: 1px solid #ccc;
387
  border-radius: 5px;
388
  font-size: 14px;
389
- box-sizing: border-box; /* Ensures padding does not affect the width calculation */
390
  margin-bottom: 10px;
391
  }
392
 
393
  .submit-customization-button {
394
- background-color: #4CAF50; /* Green background */
395
  color: white;
396
  padding: 10px 20px;
397
  border: none;
398
  border-radius: 5px;
399
  cursor: pointer;
400
  font-size: 16px;
401
- display: block; /* Makes the button block-level, so it takes the full width of the container */
402
- width: 100%; /* Ensures the button also takes the full width */
403
  margin-top: 10px;
404
  }
405
 
406
  .submit-customization-button:hover {
407
- background-color: #45a049; /* Darker green on hover */
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
  }