Skip to content

Commit

Permalink
make blob unselectable
Browse files Browse the repository at this point in the history
  • Loading branch information
cchrischen committed Dec 23, 2024
1 parent 3eeaff7 commit 2237a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion new-dti-website/components/blob.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
const RedBlob: React.FC<{ className?: string; intensity: number }> = ({ className, intensity }) => (
<div
className={`absolute h-[600px] w-[600px] rounded-full z-0 ${className}`}
className={`absolute h-[600px] w-[600px] rounded-full z-0 select-none ${className}`}
style={{
backgroundImage: `radial-gradient(rgba(192, 12, 12, ${intensity}) 5%, transparent 75%)`
}}
Expand Down

0 comments on commit 2237a61

Please sign in to comment.