@@ -65,7 +65,7 @@ const BugFix: FC = () => {
6565
6666 return (
6767 < div className = "flex h-[calc(100vh-56px)] w-full items-center justify-center text-black dark:text-white" >
68- < div className = "w-full max-w-[768px ]" >
68+ < div className = "w-full max-w-[1024px ]" >
6969 < div className = "w-full rounded-md p-2" >
7070 < div className = "flex h-full w-full items-center justify-center gap-3" >
7171 < div className = "flex w-full flex-col" >
@@ -77,7 +77,7 @@ const BugFix: FC = () => {
7777 type = "number"
7878 value = { minToken }
7979 onChange = { ( e ) => setMinToken ( e . target . value ) }
80- className = "dark:bg-black-1 w-full rounded-md bg-gray-200 p-3 outline-none"
80+ className = "w-full rounded-md bg-gray-200 p-3 outline-none dark:bg-black-1 "
8181 />
8282 </ div >
8383 < div className = "flex w-full flex-col" >
@@ -89,7 +89,7 @@ const BugFix: FC = () => {
8989 type = "number"
9090 value = { maxToken }
9191 onChange = { ( e ) => setMaxToken ( e . target . value ) }
92- className = "dark:bg-black-1 w-full rounded-md bg-gray-200 p-3 outline-none"
92+ className = "w-full rounded-md bg-gray-200 p-3 outline-none dark:bg-black-1 "
9393 />
9494 </ div >
9595 < div className = "flex w-full flex-col" >
@@ -101,7 +101,7 @@ const BugFix: FC = () => {
101101 type = "text"
102102 value = { service }
103103 onChange = { ( e ) => setService ( e . target . value ) }
104- className = "dark:bg-black-1 w-full rounded-md bg-gray-200 p-3 outline-none"
104+ className = "w-full rounded-md bg-gray-200 p-3 outline-none dark:bg-black-1 "
105105 />
106106 </ div >
107107 < div className = "flex w-full flex-col" >
@@ -113,14 +113,14 @@ const BugFix: FC = () => {
113113 type = "text"
114114 value = { version }
115115 onChange = { ( e ) => setVersion ( e . target . value ) }
116- className = "dark:bg-black-1 w-full rounded-md bg-gray-200 p-3 outline-none"
116+ className = "w-full rounded-md bg-gray-200 p-3 outline-none dark:bg-black-1 "
117117 />
118118 </ div >
119119 </ div >
120120 < div className = "mt-4" >
121121 < div
122122 ref = { messagesRef }
123- className = "h-96 w-full overflow-y-auto rounded-md bg-slate-900 p-3 scrollbar-thin scrollbar-track-transparent scrollbar-corner-transparent"
123+ className = "h-[550px] w-full overflow-y-auto rounded-md bg-slate-900 p-3 scrollbar-thin scrollbar-track-transparent scrollbar-corner-transparent"
124124 >
125125 { messages . map ( ( message ) =>
126126 message . role === 'user' ? (
@@ -148,7 +148,7 @@ const BugFix: FC = () => {
148148 value = { bugDescription }
149149 onChange = { ( e ) => setBugDescription ( e . target . value ) }
150150 rows = { 2 }
151- className = "dark:bg-black-1 w-full resize-none rounded-md bg-gray-200 p-4 pr-16 outline-none"
151+ className = "w-full resize-none rounded-md bg-gray-200 p-4 pr-16 outline-none dark:bg-black-1 "
152152 />
153153 < button
154154 disabled = { ! bugDescription }
0 commit comments