jian1114 commited on
Commit
4eece9c
1 Parent(s): 00bedb5

update app file

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -26,7 +26,16 @@ def process_paragraph(paragraph):
26
 
27
  return subheading_final
28
 
 
29
  def main():
 
 
 
 
 
 
 
 
30
  st.title("Subheading Generator")
31
  user_input = st.text_area("Enter a paragraph: ")
32
 
 
26
 
27
  return subheading_final
28
 
29
+
30
  def main():
31
+ css = """
32
+ <style>
33
+ textarea {
34
+ height: 300px;
35
+ }
36
+ </style>
37
+ """
38
+ st.markdown(css, unsafe_allow_html=True)
39
  st.title("Subheading Generator")
40
  user_input = st.text_area("Enter a paragraph: ")
41