Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -344,6 +344,9 @@ def app():
|
|
| 344 |
# Button to navigate to Cart Page
|
| 345 |
view_cart_button = gr.Button("View Cart")
|
| 346 |
|
|
|
|
|
|
|
|
|
|
| 347 |
# Modal window
|
| 348 |
modal_window = gr.HTML("""
|
| 349 |
<div id="modal" style="display: none; position: fixed; background: white; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); padding: 10px; z-index: 1000; width: 90%; max-width: 500px; height: 750px; overflow-y: hidden;">
|
|
|
|
| 344 |
# Button to navigate to Cart Page
|
| 345 |
view_cart_button = gr.Button("View Cart")
|
| 346 |
|
| 347 |
+
# Empty div box with 300px height
|
| 348 |
+
empty_div = gr.HTML('<div style="height: 300px;"></div>')
|
| 349 |
+
|
| 350 |
# Modal window
|
| 351 |
modal_window = gr.HTML("""
|
| 352 |
<div id="modal" style="display: none; position: fixed; background: white; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); padding: 10px; z-index: 1000; width: 90%; max-width: 500px; height: 750px; overflow-y: hidden;">
|