Spaces:
Running
on
Zero
Running
on
Zero
tori29umai
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -251,7 +251,7 @@ def upload_ini(file):
|
|
251 |
# カスタムCSS
|
252 |
custom_css = """
|
253 |
#chatbot {
|
254 |
-
height:
|
255 |
overflow-y: auto;
|
256 |
}
|
257 |
"""
|
@@ -262,7 +262,7 @@ custom_js = """
|
|
262 |
function adjustChatbotHeight() {
|
263 |
var chatbot = document.querySelector('#chatbot');
|
264 |
if (chatbot) {
|
265 |
-
chatbot.style.height = window.innerHeight * 0.
|
266 |
}
|
267 |
}
|
268 |
// ページ読み込み時と画面サイズ変更時にチャットボットの高さを調整
|
|
|
251 |
# カスタムCSS
|
252 |
custom_css = """
|
253 |
#chatbot {
|
254 |
+
height: 40vh !important;
|
255 |
overflow-y: auto;
|
256 |
}
|
257 |
"""
|
|
|
262 |
function adjustChatbotHeight() {
|
263 |
var chatbot = document.querySelector('#chatbot');
|
264 |
if (chatbot) {
|
265 |
+
chatbot.style.height = window.innerHeight * 0.4 + 'px';
|
266 |
}
|
267 |
}
|
268 |
// ページ読み込み時と画面サイズ変更時にチャットボットの高さを調整
|