fix: remove ring in workbench drawer

This commit is contained in:
KevIsDev 2024-11-26 22:38:21 +00:00
parent 958392945e
commit 58502f1629
2 changed files with 2 additions and 1 deletions

View File

@ -42,6 +42,7 @@ const DrawerContent = React.forwardRef<
ref={ref}
className={cn(
"fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] bg-bolt-elements-background-depth-1",
"outline-none ring-0 focus:outline-none focus:ring-0",
className
)}
{...props}

View File

@ -238,7 +238,7 @@ export const Workbench = memo(({ chatStarted, isStreaming }: WorkspaceProps) =>
open={showWorkbench}
onOpenChange={(open) => workbenchStore.showWorkbench.set(open)}
>
<DrawerContent className="h-[90vh] p-4">
<DrawerContent className="h-[90vh] p-4 ring-transparent border-transparent bg-transparent">
{workbenchInstance}
</DrawerContent>
</Drawer>