Spaces:
Runtime error
Runtime error
update app file
Browse files
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 |
|