Update templates/order.html

#17
Files changed (1) hide show
  1. templates/order.html +11 -1
templates/order.html CHANGED
@@ -126,6 +126,16 @@
126
  .d-flex .cart-item-actions {
127
  margin-bottom: 0px !important; /* Remove margin between fields */
128
  }
 
 
 
 
 
 
 
 
 
 
129
  </style>
130
  </head>
131
  <body>
@@ -197,4 +207,4 @@
197
  <p>Thank you for dining with us! <span>We look forward to serving you again.</span></p>
198
  </footer>
199
  </body>
200
- </html>
 
126
  .d-flex .cart-item-actions {
127
  margin-bottom: 0px !important; /* Remove margin between fields */
128
  }
129
+ .cart-item-instructions {
130
+ word-wrap: break-word; /* Ensures text wraps to the next line */
131
+ white-space: normal; /* Allows text to wrap naturally */
132
+ overflow-wrap: break-word; /* Breaks long words to prevent overflow */
133
+ max-width: 100%; /* Ensures the text stays within the container's width */
134
+ line-height: 1.5; /* Increases line height for better readability */
135
+ padding: 5px 0; /* Adds some padding for better text spacing */
136
+ word-break: break-word; /* Prevents words from overflowing */
137
+ }
138
+
139
  </style>
140
  </head>
141
  <body>
 
207
  <p>Thank you for dining with us! <span>We look forward to serving you again.</span></p>
208
  </footer>
209
  </body>
210
+ </html>