Skip to content

Commit 64c8a68

Browse files
committed
Fix rounded corners on the AI query panel
1 parent 0039378 commit 64c8a68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/webapp/app/components/code/AIQueryInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ export function AIQueryInput({
250250
<div className="flex flex-col">
251251
{/* Gradient border wrapper like the schedules AI input */}
252252
<div
253-
className="rounded-md p-px"
253+
className="rounded-md p-px overflow-hidden"
254254
style={{ background: "linear-gradient(to bottom right, #E543FF, #286399)" }}
255255
>
256-
<div className="overflow-hidden rounded-b-md bg-background-bright">
256+
<div className="overflow-hidden rounded-md bg-background-bright">
257257
<form onSubmit={handleSubmit}>
258258
<textarea
259259
ref={textareaRef}

0 commit comments

Comments
 (0)