Spaces:
Sleeping
Sleeping
Update custom.css
Browse files- custom.css +8 -5
custom.css
CHANGED
@@ -11,13 +11,13 @@
|
|
11 |
direction: rtl;
|
12 |
margin-right: 20px;
|
13 |
}
|
14 |
-
#chatbot {
|
15 |
-
background-color: #f9f9f9;
|
16 |
-
border-radius: 10px;
|
17 |
-
padding: 10px;
|
18 |
direction: rtl;
|
19 |
text-align: right;
|
20 |
-
|
|
|
|
|
|
|
21 |
}
|
22 |
#input-box {
|
23 |
border: 2px solid blue;
|
@@ -30,3 +30,6 @@
|
|
30 |
color: white;
|
31 |
font-weight: bold;
|
32 |
}
|
|
|
|
|
|
|
|
11 |
direction: rtl;
|
12 |
margin-right: 20px;
|
13 |
}
|
14 |
+
#chatbot .wrap {
|
|
|
|
|
|
|
15 |
direction: rtl;
|
16 |
text-align: right;
|
17 |
+
white-space: pre-wrap; /* Allows normal wrapping */
|
18 |
+
word-wrap: break-word; /* Ensures long words break instead of overflowing */
|
19 |
+
max-width: 800px; /* Optional: limit message width */
|
20 |
+
margin: 0 auto; /* Center the messages container */
|
21 |
}
|
22 |
#input-box {
|
23 |
border: 2px solid blue;
|
|
|
30 |
color: white;
|
31 |
font-weight: bold;
|
32 |
}
|
33 |
+
|
34 |
+
|
35 |
+
|