Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -14,8 +14,8 @@ st.markdown(
|
|
14 |
<style>
|
15 |
.stTextArea textarea {
|
16 |
background-color: white !important;
|
|
|
17 |
color: black !important;
|
18 |
-
font-weight: bold;
|
19 |
}
|
20 |
</style>
|
21 |
""",
|
@@ -40,6 +40,7 @@ st.markdown(
|
|
40 |
# Question Section
|
41 |
st.subheader("Hi, What do you want to know today?")
|
42 |
question = st.text_area("Enter your question:", placeholder="Type your question here...", height=100)
|
|
|
43 |
|
44 |
# # Submit Button
|
45 |
# if st.button("Submit"):
|
|
|
14 |
<style>
|
15 |
.stTextArea textarea {
|
16 |
background-color: white !important;
|
17 |
+
font-size: 18px !important;
|
18 |
color: black !important;
|
|
|
19 |
}
|
20 |
</style>
|
21 |
""",
|
|
|
40 |
# Question Section
|
41 |
st.subheader("Hi, What do you want to know today?")
|
42 |
question = st.text_area("Enter your question:", placeholder="Type your question here...", height=100)
|
43 |
+
question = question.strip()
|
44 |
|
45 |
# # Submit Button
|
46 |
# if st.button("Submit"):
|