Spaces:
Sleeping
Sleeping
Commit ·
76126c6
1
Parent(s): 7b23dba
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,21 +30,21 @@ def get_chatmodel_response(question):
|
|
| 30 |
|
| 31 |
# Streamlit app setup
|
| 32 |
st.set_page_config(page_title="Doctor AI", page_icon="💊", layout="centered", initial_sidebar_state="collapsed")
|
| 33 |
-
# Set page background
|
| 34 |
-
st.markdown(
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
)
|
| 48 |
|
| 49 |
|
| 50 |
|
|
|
|
| 30 |
|
| 31 |
# Streamlit app setup
|
| 32 |
st.set_page_config(page_title="Doctor AI", page_icon="💊", layout="centered", initial_sidebar_state="collapsed")
|
| 33 |
+
# # Set page background
|
| 34 |
+
# st.markdown(
|
| 35 |
+
# """
|
| 36 |
+
# <style>
|
| 37 |
+
# body {
|
| 38 |
+
# background-color: #f0f0f0; /* Set your desired background color */
|
| 39 |
+
# }
|
| 40 |
+
# .stTextInput, .stButton {
|
| 41 |
+
# border-radius: 50px; /* Add border-radius for a nicer input bar */
|
| 42 |
+
# padding: 50px; /* Adjust padding for better spacing */
|
| 43 |
+
# }
|
| 44 |
+
# </style>
|
| 45 |
+
# """,
|
| 46 |
+
# unsafe_allow_html=True
|
| 47 |
+
# )
|
| 48 |
|
| 49 |
|
| 50 |
|