Update modules/ui/ui.py
Browse files- modules/ui/ui.py +33 -1
modules/ui/ui.py
CHANGED
@@ -447,4 +447,36 @@ __all__ = ['main', 'login_register_page', 'initialize_session_state']
|
|
447 |
|
448 |
# Bloque de ejecuci贸n condicional
|
449 |
if __name__ == "__main__":
|
450 |
-
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
|
448 |
# Bloque de ejecuci贸n condicional
|
449 |
if __name__ == "__main__":
|
450 |
+
main()
|
451 |
+
|
452 |
+
|
453 |
+
#############################################################
|
454 |
+
#############################################################
|
455 |
+
|
456 |
+
st.markdown("""
|
457 |
+
<style>
|
458 |
+
/* Pie de p谩gina fijo */
|
459 |
+
footer {
|
460 |
+
position: fixed;
|
461 |
+
bottom: 0;
|
462 |
+
left: 0;
|
463 |
+
width: 100%;
|
464 |
+
background-color: #f0f2f6;
|
465 |
+
color: #4f4f4f;
|
466 |
+
text-align: center;
|
467 |
+
padding: 10px;
|
468 |
+
font-size: 12px;
|
469 |
+
border-top: 1px solid #e6e6e6;
|
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 |
+
</footer>
|
482 |
+
""", unsafe_allow_html=True)
|