Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,11 @@ st.set_page_config(
|
|
20 |
initial_sidebar_state="expanded"
|
21 |
)
|
22 |
|
|
|
|
|
|
|
|
|
|
|
23 |
# إضافة CSS المخصص
|
24 |
st.markdown("""
|
25 |
<style>
|
|
|
20 |
initial_sidebar_state="expanded"
|
21 |
)
|
22 |
|
23 |
+
# استيراد ملف CSS للإصلاحات RTL
|
24 |
+
with open("static/css/rtl-fixes.css", "r") as f:
|
25 |
+
rtl_css = f.read()
|
26 |
+
st.markdown(f"<style>{rtl_css}</style>", unsafe_allow_html=True)
|
27 |
+
|
28 |
# إضافة CSS المخصص
|
29 |
st.markdown("""
|
30 |
<style>
|