Update app.py
Browse files
app.py
CHANGED
@@ -598,6 +598,7 @@ button.download-button {
|
|
598 |
gap: 8px;
|
599 |
margin-left: auto;
|
600 |
margin-right: auto;
|
|
|
601 |
}
|
602 |
button.download-button:hover {
|
603 |
background-color: #3da037;
|
@@ -778,7 +779,7 @@ with gr.Blocks(css=custom_css) as app:
|
|
778 |
with gr.Group(elem_classes="output-section"):
|
779 |
gr.HTML('<h3 class="section-header">Your Personalized Recipes</h3>')
|
780 |
output = gr.HTML(elem_classes="recipe-output")
|
781 |
-
download_button = gr.Button("📥 Download Recipes as HTML", elem_classes="download-button", visible=False, elem_id="download-button")
|
782 |
|
783 |
gr.HTML(html_footer)
|
784 |
|
|
|
598 |
gap: 8px;
|
599 |
margin-left: auto;
|
600 |
margin-right: auto;
|
601 |
+
margin-bottom: 25px !important;
|
602 |
}
|
603 |
button.download-button:hover {
|
604 |
background-color: #3da037;
|
|
|
779 |
with gr.Group(elem_classes="output-section"):
|
780 |
gr.HTML('<h3 class="section-header">Your Personalized Recipes</h3>')
|
781 |
output = gr.HTML(elem_classes="recipe-output")
|
782 |
+
download_button = gr.Button("📥 Download Recipes as HTML (Click on it", elem_classes="download-button", visible=False, elem_id="download-button")
|
783 |
|
784 |
gr.HTML(html_footer)
|
785 |
|