Chronicle / app.py
topguy's picture
fix: added some padding to textedit field so they look better in firefox.
cef8efc
raw
history blame contribute delete
182 Bytes
import gradio as gr
from modules.ui_layout import build_ui, UI_CSS
if __name__ == "__main__":
demo = build_ui()
demo.launch(theme=gr.themes.Soft(), css=UI_CSS, share=False)