avatar
Browse files
app.py
CHANGED
|
@@ -994,6 +994,15 @@ button.svelte-1x5qevo.center.boundedheight.flex {
|
|
| 994 |
display: none;
|
| 995 |
}
|
| 996 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 997 |
"""
|
| 998 |
|
| 999 |
|
|
|
|
| 994 |
display: none;
|
| 995 |
}
|
| 996 |
|
| 997 |
+
/* 隐藏 Chatbot 内部的滚动条 */
|
| 998 |
+
.custom-avatar ::-webkit-scrollbar {
|
| 999 |
+
display: none !important; /* Chrome, Safari, Edge */
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.custom-avatar {
|
| 1003 |
+
-ms-overflow-style: none !important; /* IE and Edge */
|
| 1004 |
+
scrollbar-width: none !important; /* Firefox */
|
| 1005 |
+
}
|
| 1006 |
"""
|
| 1007 |
|
| 1008 |
|