Spaces:
Sleeping
Sleeping
Commit
·
95e1aa4
1
Parent(s):
331adf1
increased box width
Browse files
app.py
CHANGED
@@ -96,21 +96,23 @@ 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 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
|
|
|
|
114 |
# Define a custom style for your title
|
115 |
title_style = """
|
116 |
<style>
|
|
|
96 |
st.set_page_config(page_title="Virtual Therapist", page_icon=im)
|
97 |
|
98 |
# Add custom CSS styles
|
99 |
+
st.markdown(
|
100 |
+
"""
|
101 |
+
<style>
|
102 |
+
.custom-box {
|
103 |
+
border: 2px solid black;
|
104 |
+
display: flex;
|
105 |
+
flex-direction: column;
|
106 |
+
align-items: center;
|
107 |
+
justify-content: center; /* Align content in the middle */
|
108 |
+
height: 10vh; /* Reduce the height of the box */
|
109 |
+
padding: 10px; /* Reduce padding */
|
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>
|