bigghuggs commited on
Commit
7ea3b2a
·
verified ·
1 Parent(s): cc9a4f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -44,12 +44,6 @@ def multiprocessPrompts(prompts):
44
  return responses
45
 
46
 
47
- css = """
48
- .scroll {
49
- overflow: scroll;
50
- }
51
-
52
- """
53
 
54
  js_func = """
55
  function newScroll() {
@@ -72,6 +66,14 @@ function refresh() {
72
 
73
  """
74
 
 
 
 
 
 
 
 
 
75
 
76
 
77
 
 
44
  return responses
45
 
46
 
 
 
 
 
 
 
47
 
48
  js_func = """
49
  function newScroll() {
 
66
 
67
  """
68
 
69
+ css = """
70
+ .scroll[style] {
71
+ overflow: scroll !important;
72
+ }
73
+
74
+ """
75
+
76
+
77
 
78
 
79