Update pages/type_text.py
Browse files- pages/type_text.py +1 -1
pages/type_text.py
CHANGED
@@ -47,7 +47,7 @@ def scrollToBottom():
|
|
47 |
// If you found an ID like my-streamlit-container,
|
48 |
// you'd change the line to: const scrollableContainer = document.getElementById('my-streamlit-container'); (and use getElementById instead of querySelector)
|
49 |
// *** REPLACE THE SELECTOR BELOW with the correct one you found by inspecting your app's HTML ***
|
50 |
-
const scrollableContainer = document.querySelector('.flex min-h-dvh
|
51 |
#const scrollableContainer = document.getElementById('your-container-id')); // <--- REPLACE THIS SELECTOR
|
52 |
|
53 |
if (scrollableContainer) {
|
|
|
47 |
// If you found an ID like my-streamlit-container,
|
48 |
// you'd change the line to: const scrollableContainer = document.getElementById('my-streamlit-container'); (and use getElementById instead of querySelector)
|
49 |
// *** REPLACE THE SELECTOR BELOW with the correct one you found by inspecting your app's HTML ***
|
50 |
+
const scrollableContainer = document.querySelector('.flex flex-col min-h-dvh bg-white dark:bg-gray-950 text-black SpacePage') // <--- REPLACE THIS SELECTOR
|
51 |
#const scrollableContainer = document.getElementById('your-container-id')); // <--- REPLACE THIS SELECTOR
|
52 |
|
53 |
if (scrollableContainer) {
|