updated
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ st.set_page_config(layout='wide')
|
|
12 |
# Custom CSS for background color and text color
|
13 |
st.markdown(
|
14 |
"""
|
15 |
-
|
16 |
.stApp {
|
17 |
background-color: #efefef !important;
|
18 |
color: black !important;
|
@@ -55,4 +55,4 @@ if st.button('Predict'):
|
|
55 |
with tab2:
|
56 |
precautions = disease_model.predicted_disease_precautions()
|
57 |
for i in range(4):
|
58 |
-
st.write(f'{i+1}. {precautions[i]}')
|
|
|
12 |
# Custom CSS for background color and text color
|
13 |
st.markdown(
|
14 |
"""
|
15 |
+
<style>
|
16 |
.stApp {
|
17 |
background-color: #efefef !important;
|
18 |
color: black !important;
|
|
|
55 |
with tab2:
|
56 |
precautions = disease_model.predicted_disease_precautions()
|
57 |
for i in range(4):
|
58 |
+
st.write(f'{i+1}. {precautions[i]}')
|