aazankhanYousafzai commited on
Commit
dfbfd57
·
verified ·
1 Parent(s): f7fbc97

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -2
app.py CHANGED
@@ -124,7 +124,6 @@ h1 {
124
  line-height: 1.3;
125
  font-size: 14px;
126
 
127
- /* 🔧 FIX vertical letters */
128
  white-space: normal !important;
129
  word-break: keep-all !important;
130
  overflow-wrap: break-word !important;
@@ -132,6 +131,25 @@ h1 {
132
  box-sizing: border-box !important;
133
  }
134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  .message.user {
136
  background: var(--user);
137
  color: white;
@@ -155,7 +173,6 @@ textarea {
155
  padding: 12px !important;
156
  font-size: 15px !important;
157
 
158
- /* 🔧 FIX vertical typing */
159
  white-space: pre-wrap !important;
160
  word-break: normal !important;
161
  overflow-wrap: break-word !important;
 
124
  line-height: 1.3;
125
  font-size: 14px;
126
 
 
127
  white-space: normal !important;
128
  word-break: keep-all !important;
129
  overflow-wrap: break-word !important;
 
131
  box-sizing: border-box !important;
132
  }
133
 
134
+ /* 🔧 REMOVE BLACK GHOST BLOCKS */
135
+ .message::before,
136
+ .message::after,
137
+ .chatbot .message div::before,
138
+ .chatbot .message div::after {
139
+ display: none !important;
140
+ content: none !important;
141
+ }
142
+
143
+ .message {
144
+ overflow: visible !important;
145
+ background-clip: padding-box !important;
146
+ }
147
+
148
+ .chatbot * {
149
+ box-shadow: none !important;
150
+ filter: none !important;
151
+ }
152
+
153
  .message.user {
154
  background: var(--user);
155
  color: white;
 
173
  padding: 12px !important;
174
  font-size: 15px !important;
175
 
 
176
  white-space: pre-wrap !important;
177
  word-break: normal !important;
178
  overflow-wrap: break-word !important;