Skip to content

Commit

Permalink
Update packages/ui/components/SlideOver.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Fran Méndez <fmvilas@gmail.com>
  • Loading branch information
princerajpoot20 and fmvilas authored Jul 4, 2023
1 parent 8d58de1 commit 83736f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/components/SlideOver.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const SlideOver: React.FC<SlideOverProps> = ({ isOpen, onClose, children
};

return (
<div className="fixed right-0 top-0 bottom-0 w-full max-w-lg h-full bg-gray-950/[.67] text-gray-200 shadow-lg overflow-auto p-2.5 border-l-2 border-gray-700 backdrop-blur-[20px]" tabIndex={0} onKeyDown={handleKeyDown}>
<div className="fixed right-0 top-0 bottom-0 w-full max-w-lg h-full bg-gray-950/[.67] text-gray-200 shadow-lg overflow-auto p-8 border-l-2 border-gray-700 backdrop-blur-[20px]" tabIndex={0} onKeyDown={handleKeyDown}>
<button className="absolute top-2 right-2 focus:outline-white" onClick={onClose} aria-label="Close">
<XMarkIcon className="h-6 w-6"/>
</button>
Expand Down

0 comments on commit 83736f5

Please sign in to comment.