Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,9 +9,21 @@ import random
|
|
| 9 |
css = """
|
| 10 |
.rtl{
|
| 11 |
text-align: right;
|
|
|
|
|
|
|
|
|
|
| 12 |
}
|
| 13 |
#component-18{
|
| 14 |
text-align: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
.selectize-dropdown, .selectize-input {
|
| 17 |
direction: rtl !important;
|
|
|
|
| 9 |
css = """
|
| 10 |
.rtl{
|
| 11 |
text-align: right;
|
| 12 |
+
direction: rtl;
|
| 13 |
+
flex-direction: row-reverse; /* Makes the main-axis start from the right */
|
| 14 |
+
justify-content: flex-start; /* Aligns children to the right */
|
| 15 |
}
|
| 16 |
#component-18{
|
| 17 |
text-align: right;
|
| 18 |
+
direction: rtl;
|
| 19 |
+
flex-direction: row-reverse; /* Makes the main-axis start from the right */
|
| 20 |
+
justify-content: flex-start; /* Aligns children to the right */
|
| 21 |
+
}
|
| 22 |
+
#component-29{
|
| 23 |
+
text-align: right;
|
| 24 |
+
direction: rtl;
|
| 25 |
+
flex-direction: row-reverse; /* Makes the main-axis start from the right */
|
| 26 |
+
justify-content: flex-start; /* Aligns children to the right */
|
| 27 |
}
|
| 28 |
.selectize-dropdown, .selectize-input {
|
| 29 |
direction: rtl !important;
|