Spaces:
Sleeping
Sleeping
Commit
·
aec79b4
1
Parent(s):
782c9a5
increased box widths
Browse files
app.py
CHANGED
@@ -96,10 +96,9 @@ def config():
|
|
96 |
st.set_page_config(page_title="Virtual Therapist", page_icon=im)
|
97 |
|
98 |
# Add custom CSS styles
|
99 |
-
st.markdown(
|
100 |
-
|
101 |
-
|
102 |
-
.custom-box {
|
103 |
border: 2px solid black;
|
104 |
display: flex;
|
105 |
flex-direction: column;
|
@@ -110,9 +109,7 @@ def config():
|
|
110 |
border-radius: 10px;
|
111 |
}
|
112 |
</style>
|
113 |
-
""",
|
114 |
-
unsafe_allow_html=True,
|
115 |
-
)
|
116 |
# Define a custom style for your title
|
117 |
title_style = """
|
118 |
<style>
|
|
|
96 |
st.set_page_config(page_title="Virtual Therapist", page_icon=im)
|
97 |
|
98 |
# Add custom CSS styles
|
99 |
+
st.markdown("""
|
100 |
+
<style>
|
101 |
+
.mobile-screen {
|
|
|
102 |
border: 2px solid black;
|
103 |
display: flex;
|
104 |
flex-direction: column;
|
|
|
109 |
border-radius: 10px;
|
110 |
}
|
111 |
</style>
|
112 |
+
""", unsafe_allow_html=True)
|
|
|
|
|
113 |
# Define a custom style for your title
|
114 |
title_style = """
|
115 |
<style>
|