MK-316 commited on
Commit
ea22983
1 Parent(s): db43bab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,7 +18,7 @@ if "time_up" not in st.session_state:
18
  st.session_state.time_up = False
19
 
20
  # Title
21
- st.title("🐧 MK316 Quiet Timer ")
22
 
23
  # Function to display the current time (as a live digital clock)
24
  def display_current_time(current_time_placeholder):
@@ -27,7 +27,7 @@ def display_current_time(current_time_placeholder):
27
 
28
  # Style the clock (increase font size and set color)
29
  current_time_placeholder.markdown(
30
- f"<h1 style='text-align: center; font-size: 80px; color: #5785A4;'>{current_time}</h1>", # Large font
31
  unsafe_allow_html=True
32
  )
33
 
 
18
  st.session_state.time_up = False
19
 
20
  # Title
21
+ st.title("🐧 MK316 Customized Timer ")
22
 
23
  # Function to display the current time (as a live digital clock)
24
  def display_current_time(current_time_placeholder):
 
27
 
28
  # Style the clock (increase font size and set color)
29
  current_time_placeholder.markdown(
30
+ f"<h2 style='text-align: center; font-size: 60px; color: #5785A4;'>{current_time}</h1>", # Large font
31
  unsafe_allow_html=True
32
  )
33