right align
Browse files
app.py
CHANGED
|
@@ -11,6 +11,13 @@ st.markdown("""
|
|
| 11 |
border-radius: 12px;
|
| 12 |
padding: 10px;
|
| 13 |
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
}
|
| 15 |
</style>
|
| 16 |
""", unsafe_allow_html=True)
|
|
|
|
| 11 |
border-radius: 12px;
|
| 12 |
padding: 10px;
|
| 13 |
margin-bottom: 10px;
|
| 14 |
+
direction: rtl;
|
| 15 |
+
text-align: right;
|
| 16 |
+
font-family: 'Tahoma', sans-serif;
|
| 17 |
+
}
|
| 18 |
+
.stMarkdown, .stTextInput, .stTextArea {
|
| 19 |
+
direction: rtl !important;
|
| 20 |
+
text-align: right !important;
|
| 21 |
}
|
| 22 |
</style>
|
| 23 |
""", unsafe_allow_html=True)
|