Fraser commited on
Commit
cf520fe
·
1 Parent(s): 728ca5b
Files changed (2) hide show
  1. app.py +13 -1
  2. style.css +0 -11
app.py CHANGED
@@ -119,7 +119,19 @@ demo = gr.ChatInterface(
119
  ],
120
  type="messages",
121
  description=DESCRIPTION,
122
- css_paths="style.css",
 
 
 
 
 
 
 
 
 
 
 
 
123
  )
124
 
125
 
 
119
  ],
120
  type="messages",
121
  description=DESCRIPTION,
122
+ css="""
123
+ h1 {
124
+ text-align: center;
125
+ display: block;
126
+ }
127
+
128
+ #duplicate-button {
129
+ margin: auto;
130
+ color: white;
131
+ background: #1565c0;
132
+ border-radius: 100vh;
133
+ }
134
+ """,
135
  )
136
 
137
 
style.css DELETED
@@ -1,11 +0,0 @@
1
- h1 {
2
- text-align: center;
3
- display: block;
4
- }
5
-
6
- #duplicate-button {
7
- margin: auto;
8
- color: white;
9
- background: #1565c0;
10
- border-radius: 100vh;
11
- }