tclopess commited on
Commit
686d56e
1 Parent(s): 0a37dd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -5,5 +5,11 @@ def mensagem(nome):
5
 
6
  app_title = "Welcome! Allow me to introduce? Type your name!"
7
 
8
- mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title)
9
- mostrar.launch()
 
 
 
 
 
 
 
5
 
6
  app_title = "Welcome! Allow me to introduce? Type your name!"
7
 
8
+ app_css = """
9
+ .gr-interface-title {
10
+ text-align: center;
11
+ }
12
+ """
13
+
14
+ mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title, css=app_css)
15
+ mostrar.launch()