udpate
Browse files- static/index.html +2 -0
- static/style.css +2 -3
static/index.html
CHANGED
@@ -13,9 +13,11 @@
|
|
13 |
<h1>ASK-ANRG</h1>
|
14 |
<label for="api-key-input">API Key:</label>
|
15 |
<input type="text" id="api-key-input" placeholder="Enter your API key...">
|
|
|
16 |
<div class="chat-box" id="chat-box">
|
17 |
<!-- Chat messages will be displayed here -->
|
18 |
</div>
|
|
|
19 |
<input type="text" id="user-input" placeholder="Type your message...">
|
20 |
<button id="send-btn">Send</button>
|
21 |
</div>
|
|
|
13 |
<h1>ASK-ANRG</h1>
|
14 |
<label for="api-key-input">API Key:</label>
|
15 |
<input type="text" id="api-key-input" placeholder="Enter your API key...">
|
16 |
+
<div class="outside-container">
|
17 |
<div class="chat-box" id="chat-box">
|
18 |
<!-- Chat messages will be displayed here -->
|
19 |
</div>
|
20 |
+
</div>
|
21 |
<input type="text" id="user-input" placeholder="Type your message...">
|
22 |
<button id="send-btn">Send</button>
|
23 |
</div>
|
static/style.css
CHANGED
@@ -95,9 +95,8 @@ label {
|
|
95 |
}
|
96 |
|
97 |
/* Add these styles to your style.css */
|
98 |
-
.
|
99 |
-
position: relative;
|
100 |
-
/* ... other styles ... */
|
101 |
}
|
102 |
|
103 |
.typing-indicator {
|
|
|
95 |
}
|
96 |
|
97 |
/* Add these styles to your style.css */
|
98 |
+
.outside-container {
|
99 |
+
position: relative;
|
|
|
100 |
}
|
101 |
|
102 |
.typing-indicator {
|