Update modules/ui/ui.py
Browse files- modules/ui/ui.py +4 -6
modules/ui/ui.py
CHANGED
@@ -453,10 +453,9 @@ if __name__ == "__main__":
|
|
453 |
#############################################################
|
454 |
#############################################################
|
455 |
|
456 |
-
|
457 |
<style>
|
458 |
-
|
459 |
-
footer {
|
460 |
position: fixed;
|
461 |
bottom: 0;
|
462 |
left: 0;
|
@@ -470,13 +469,12 @@ footer {
|
|
470 |
z-index: 100;
|
471 |
}
|
472 |
|
473 |
-
/* Espacio adicional al final de la app para no tapar contenido */
|
474 |
.main > div {
|
475 |
padding-bottom: 60px;
|
476 |
}
|
477 |
</style>
|
478 |
|
479 |
-
<footer>
|
480 |
© 2025 NVIDIA, the NVIDIA logo, and AIdeaText, ALPHA are trademarks and/or registered trademarks of NVIDIA Corporation in the U.S. and other countries.
|
481 |
-
</
|
482 |
""", unsafe_allow_html=True)
|
|
|
453 |
#############################################################
|
454 |
#############################################################
|
455 |
|
456 |
+
footer_placeholder.markdown("""
|
457 |
<style>
|
458 |
+
#footer {
|
|
|
459 |
position: fixed;
|
460 |
bottom: 0;
|
461 |
left: 0;
|
|
|
469 |
z-index: 100;
|
470 |
}
|
471 |
|
|
|
472 |
.main > div {
|
473 |
padding-bottom: 60px;
|
474 |
}
|
475 |
</style>
|
476 |
|
477 |
+
<div id="footer">
|
478 |
© 2025 NVIDIA, the NVIDIA logo, and AIdeaText, ALPHA are trademarks and/or registered trademarks of NVIDIA Corporation in the U.S. and other countries.
|
479 |
+
</div>
|
480 |
""", unsafe_allow_html=True)
|