Jonas Wiesli commited on
Commit
15708da
1 Parent(s): 19f9778

added quick fix for multiplying break tags

Browse files
Files changed (2) hide show
  1. app.py +2 -2
  2. style.css +4 -0
app.py CHANGED
@@ -34,7 +34,7 @@ css = "@import url(https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;
34
  "}#component-62{position:initial}#component-50,#component-57,#component-64{" \
35
  "position:absolute;top:20px;right:20px;width:44px;height:44px;min-width:44px;min" \
36
  "-height:44px;line-height:0}.output-class.svelte-1s28oeb.svelte-1s28oeb.svelte-1s28oeb,div.svelte-1eq475l{" \
37
- "font-weight:400}"
38
 
39
  with gr.Blocks(theme=theme, css=css) as iface:
40
  chatbot = []
@@ -94,7 +94,7 @@ with gr.Blocks(theme=theme, css=css) as iface:
94
  "going around that he’s a bit of a nutcase, but as long as he does his job well, you do not mind. Now "
95
  "you're being interrogated by a detective. Director Eisenholz has been murdered. Use sophisticated "
96
  "language. You are an old-fashioned gentleman, but you are not afraid to voice your complaints. ",
97
-
98
  "You are Dominic Schwartz, 35, and the researcher in this museum. Start the conversation by "
99
  "explaining that you love the history of medieval times, mostly regarding French monarchs. You are so "
100
  "lucky to be able to work in this museum and do the research of the artifacts! Inform the detective "
 
34
  "}#component-62{position:initial}#component-50,#component-57,#component-64{" \
35
  "position:absolute;top:20px;right:20px;width:44px;height:44px;min-width:44px;min" \
36
  "-height:44px;line-height:0}.output-class.svelte-1s28oeb.svelte-1s28oeb.svelte-1s28oeb,div.svelte-1eq475l{" \
37
+ "font-weight:400}br+br+br{display:none}"
38
 
39
  with gr.Blocks(theme=theme, css=css) as iface:
40
  chatbot = []
 
94
  "going around that he’s a bit of a nutcase, but as long as he does his job well, you do not mind. Now "
95
  "you're being interrogated by a detective. Director Eisenholz has been murdered. Use sophisticated "
96
  "language. You are an old-fashioned gentleman, but you are not afraid to voice your complaints. ",
97
+
98
  "You are Dominic Schwartz, 35, and the researcher in this museum. Start the conversation by "
99
  "explaining that you love the history of medieval times, mostly regarding French monarchs. You are so "
100
  "lucky to be able to work in this museum and do the research of the artifacts! Inform the detective "
style.css CHANGED
@@ -141,4 +141,8 @@ textarea {
141
 
142
  div.svelte-1eq475l, .output-class.svelte-1s28oeb.svelte-1s28oeb.svelte-1s28oeb {
143
  font-weight: 400;
 
 
 
 
144
  }
 
141
 
142
  div.svelte-1eq475l, .output-class.svelte-1s28oeb.svelte-1s28oeb.svelte-1s28oeb {
143
  font-weight: 400;
144
+ }
145
+
146
+ br + br + br {
147
+ display: none;
148
  }