Update style.css
Browse files
style.css
CHANGED
@@ -101,22 +101,20 @@
|
|
101 |
}
|
102 |
}
|
103 |
|
104 |
-
#llm-output {
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
119 |
-
}
|
120 |
|
121 |
#llm-output:empty::after {
|
122 |
content: "Waiting for response...";
|
|
|
101 |
}
|
102 |
}
|
103 |
|
104 |
+
#llm-output {
|
105 |
+
font-family: 'IBM Plex Mono', monospace;
|
106 |
+
background: #282c34;
|
107 |
+
color: #abb2bf;
|
108 |
+
border-radius: 8px;
|
109 |
+
padding: 1.5rem;
|
110 |
+
margin: 1.5rem auto;
|
111 |
+
min-height: 100px;
|
112 |
+
max-height: 400px;
|
113 |
+
overflow-y: auto;
|
114 |
+
line-height: 1.6;
|
115 |
+
white-space: pre-wrap;
|
116 |
+
word-break: break-word;
|
117 |
+
}
|
|
|
|
|
118 |
|
119 |
#llm-output:empty::after {
|
120 |
content: "Waiting for response...";
|