-
Notifications
You must be signed in to change notification settings - Fork 692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
experimenting to improve extension (drag & tailwind) #237
base: main
Are you sure you want to change the base?
Conversation
Code Review✅ All Clear: This PR is ready to merge! 👍 Incorrect Usage of motion.divThe motion.div is used incorrectly without proper configuration.Potential Solution: Either remove the motion.div or configure it properly with animation props.
Useful Commands
|
<Toaster /> | ||
|
||
<motion.div dragConstraints={drag} drag className=" absolute">HEllo therre</motion.div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment: The motion.div is used incorrectly without proper configuration.
Solution: Either remove the motion.div or configure it properly with animation props.
Reason For Comment: Improper use of the motion component can lead to unexpected behavior or errors.
<motion.div dragConstraints={drag} drag className=" absolute">HEllo therre</motion.div> | |
// Remove or properly configure the motion.div | |
// <motion.div dragConstraints={drag}drag className=" absolute">Hello there</motion.div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what model is this ?
I made sure it, does not have momentum still will try |
Enhancements to Extension Functionality (Drag & Tailwind)
Overview
This pull request introduces several enhancements to the extension's functionality, focusing on improving user experience through the integration of drag-and-drop capabilities and the incorporation of Tailwind CSS for improved styling.
Changes
New Features:
Refactoring:
package.json
file to include necessary dependencies for Tailwind CSS and the motion library, ensuring compatibility and functionality.Other Changes:
Original Description
None