sharmavaruncs commited on
Commit
95e1aa4
·
1 Parent(s): 331adf1

increased box width

Browse files
Files changed (1) hide show
  1. app.py +17 -15
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
- <style>
101
- .mobile-screen {
102
- border: 3px solid black;
103
- display: flex;
104
- flex-direction: column;
105
- align-items: center;
106
- justify-content: flex-start; /* Align content to the top */
107
- height: 20vh;
108
- padding: 40px;
109
- border-radius: 10px;
110
- }
111
- </style>
112
- """, unsafe_allow_html=True)
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>