Skincare-by-Dr-Aisha-Ghias commited on
Commit
08449d9
1 Parent(s): 7a849f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -0
app.py CHANGED
@@ -22,6 +22,27 @@ custom_css = """
22
  }
23
  </style>
24
  """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  st.markdown(custom_css, unsafe_allow_html=True)
26
 
27
 
 
22
  }
23
  </style>
24
  """
25
+
26
+ st.markdown("""
27
+ <style>
28
+ [data-testid="collapsedControl"] {
29
+ animation: pulse 2s infinite;
30
+ }
31
+ @keyframes pulse {
32
+ 0% {
33
+ opacity: 1;
34
+ }
35
+ 50% {
36
+ opacity: 0.5;
37
+ }
38
+ 100% {
39
+ opacity: 1;
40
+ }
41
+ }
42
+ </style>
43
+ """, unsafe_allow_html=True)
44
+
45
+
46
  st.markdown(custom_css, unsafe_allow_html=True)
47
 
48