Skip to content

Commit

Permalink
style: Remove unnecessary opacity value in Drawer.Overlay class
Browse files Browse the repository at this point in the history
  • Loading branch information
HashCookie committed Jun 17, 2024
1 parent 10920be commit 548b418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/SidePanelChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export function SidePanelChat() {
return (
<Drawer.Root direction="right">
<Drawer.Trigger asChild>
<button className='text-red-600'>Why this result?</button>
<button className="text-red-600">Why this result?</button>
</Drawer.Trigger>
<Drawer.Portal>
<Drawer.Overlay className="fixed inset-0 bg-black/40" />
<Drawer.Overlay className="fixed inset-0" />
<Drawer.Content className="bg-white flex flex-col rounded-t-[10px] h-full w-[500px] fixed bottom-0 right-0">
<div className="p-4 bg-white flex-1 flex flex-col h-full">
<Drawer.Title className="font-medium mb-4">
Expand Down

0 comments on commit 548b418

Please sign in to comment.