heysho commited on
Commit
9d875c3
1 Parent(s): 6382dcf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -16
app.py CHANGED
@@ -20,6 +20,23 @@ except KeyError:
20
  # Page title
21
  st.title('Daily Reminder')
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  # Initialize usage counter and language in session state
24
  if 'usage_count' not in st.session_state:
25
  st.session_state['usage_count'] = 0
@@ -86,19 +103,3 @@ else:
86
  if result:
87
  st.write(result)
88
 
89
- # Style adjustments (optional, remove if not needed)
90
- st.markdown(
91
- """
92
- <style>
93
- /* Custom style adjustments */
94
- .st-emotion-cache-iiif1v { display: none !important; }
95
- .st-emotion-cache-gh2jqd {padding: 6rem 1rem 0rem;}
96
- @media (max-width: 50.5rem) {
97
- .st-emotion-cache-gh2jqd {
98
- max-width: calc(0rem + 100vw);
99
- }
100
- }
101
- </style>
102
- """,
103
- unsafe_allow_html=True,
104
- )
 
20
  # Page title
21
  st.title('Daily Reminder')
22
 
23
+ # Style adjustments (optional, remove if not needed)
24
+ st.markdown(
25
+ """
26
+ <style>
27
+ /* Custom style adjustments */
28
+ .st-emotion-cache-iiif1v { display: none !important; }
29
+ .st-emotion-cache-gh2jqd {padding: 6rem 1rem 0rem;}
30
+ @media (max-width: 50.5rem) {
31
+ .st-emotion-cache-gh2jqd {
32
+ max-width: calc(0rem + 100vw);
33
+ }
34
+ }
35
+ </style>
36
+ """,
37
+ unsafe_allow_html=True,
38
+ )
39
+
40
  # Initialize usage counter and language in session state
41
  if 'usage_count' not in st.session_state:
42
  st.session_state['usage_count'] = 0
 
103
  if result:
104
  st.write(result)
105