We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ac1622 commit c3bfc21Copy full SHA for c3bfc21
src/playground/src/App.tsx
@@ -67,7 +67,7 @@ const Main: React.FC = (): JSX.Element => {
67
return (
68
<main>
69
<Header />
70
- <div>
+ <div id="ai-chat">
71
<BitteAiChat
72
options={{
73
agentImage: bitteAgent.image,
src/playground/src/index.css
@@ -1,12 +1,17 @@
1
@import "tailwindcss";
2
3
-main > div {
4
- width: 700px;
5
-
+#ai-chat {
+ width: 100%;
6
margin: 0 auto;
7
height: 540px;
8
}
9
+@media (min-width: 768px) {
10
+ #ai-chat {
11
+ width: 700px;
12
+ }
13
+}
14
+
15
body {
16
background-color: #242424;
17
0 commit comments