Update pages/type_text.py
Browse files- pages/type_text.py +1 -1
pages/type_text.py
CHANGED
@@ -43,7 +43,7 @@ def scrollToBottom():
|
|
43 |
// Let's try a common Streamlit container class. You might need to adjust this.
|
44 |
// Once you've found the correct container div,
|
45 |
// note its class names (e.g., class="some-streamlit-class another-class") or its ID (e.g., id="some-id").
|
46 |
-
const scrollableContainer = document.querySelector(
|
47 |
#const scrollableContainer = document.getElementById('your-container-id')); // Example selector
|
48 |
|
49 |
if (scrollableContainer) {
|
|
|
43 |
// Let's try a common Streamlit container class. You might need to adjust this.
|
44 |
// Once you've found the correct container div,
|
45 |
// note its class names (e.g., class="some-streamlit-class another-class") or its ID (e.g., id="some-id").
|
46 |
+
const scrollableContainer = document.querySelector(class="flex min-h-dvh flex-col"); // Example selector
|
47 |
#const scrollableContainer = document.getElementById('your-container-id')); // Example selector
|
48 |
|
49 |
if (scrollableContainer) {
|