digitalai commited on
Commit
b2bb2d8
1 Parent(s): c31b34d

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +7 -2
main.py CHANGED
@@ -21,8 +21,13 @@ with open(css_file_path, "r", encoding="utf-8") as file:
21
  css_code = file.read()
22
 
23
  # اعمال CSS
24
- st.markdown(f"<style>{css_code}</style>", unsafe_allow_html=True)
25
-
 
 
 
 
 
26
  state = st.session_state
27
 
28
  make_sidebar()
 
21
  css_code = file.read()
22
 
23
  # اعمال CSS
24
+ st.markdown(f"""
25
+ <head>
26
+ <style>
27
+ {css_code}
28
+ </style>
29
+ </head>
30
+ """, unsafe_allow_html=True)
31
  state = st.session_state
32
 
33
  make_sidebar()