feat: add select-none class to MorePagesPage

This commit is contained in:
Anish Sarkar 2026-02-22 18:44:22 +05:30
parent aeb2613b2b
commit e0d149c844

View file

@ -75,7 +75,7 @@ export default function MorePagesPage() {
const allCompleted = data?.tasks.every((t) => t.completed) ?? false; const allCompleted = data?.tasks.every((t) => t.completed) ?? false;
return ( return (
<div className="flex min-h-[calc(100vh-64px)] items-center justify-center px-4 py-8"> <div className="flex min-h-[calc(100vh-64px)] select-none items-center justify-center px-4 py-8">
<motion.div <motion.div
initial={{ opacity: 0, y: 20 }} initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }} animate={{ opacity: 1, y: 0 }}
@ -174,7 +174,7 @@ export default function MorePagesPage() {
Contact Us Contact Us
</Button> </Button>
</DialogTrigger> </DialogTrigger>
<DialogContent className="sm:max-w-md"> <DialogContent className="select-none sm:max-w-md">
<DialogHeader> <DialogHeader>
<DialogTitle>Contact Us</DialogTitle> <DialogTitle>Contact Us</DialogTitle>
<DialogDescription>Schedule a meeting or send us an email.</DialogDescription> <DialogDescription>Schedule a meeting or send us an email.</DialogDescription>