Describe the bug
Hi, I am having an issue in drag and drop in calendar, when I drag any event the mouse pointer and event are on different places. I鈥檝e kept screen shot describing that.
I am using Nebular, An angular library and in this library when I use this calendar on NbFlipCard component, then I am facing this issue and if I use NbCard then it works fine. Below is the link regarding the Nebular Angular UI library
https://akveo.github.io/nebular/docs/components/flip-card/overview#nbflipcardcomponent.
Edit:
This is working fine in Day and Week pages, only in month it is not showing properly.
Also tried using this calendar in ngx-flip (https://www.npmjs.com/package/ngx-flip), still this issue occurs
Any help on how to solve that issue? Thanks.
Screenshots

Versions
@angular/core: 9.1.0angular-calendar: 0.28.16Thanks so much for opening an issue! If you'd like me to give priority to answering your issue or would just like to support this project, then please consider sponsoring me
Hey there, I'm not able to reproduce the problem you're having on my end, if you're still facing issues would you mind putting together a runnable stackblitz that demonstrates the issue you're having. You can fork a starter from any of the demos by hitting the "Edit in stackblitz" button. Thanks! 馃檶
Hi, thanks for the reply this is runnable stackblitz to demonstrate the issue,
https://stackblitz.com/edit/angular-3qjm3h?file=main.ts
If you don't see any issue while drag and drop, scroll down the calendar to the bottom of the page and then try dragging the event you will get to see the issue.

Awesome, thanks! I can reproduce now 馃槃
Hey there, I couldn't find a way of making this work out of the box but I did find a workaround for your specific issue. When dragging an event I apply a css class that disables the CSS applied by ngx-flip which causes the issue by applying these global styles:
<style>
ngx-flip.disable-flip {
perspective: none !important;
}
.disable-flip .flipper {
transform-style: flat !important;
}
.disable-flip .front {
transform: none !important;
}
</style>
and that seems to work pretty well, there's a demo here showing it in action. Hope that helps! 馃槃
Hi, thanks for the solution, any idea on what styling I need to use if I use Nebular Flip Card instead of Ngx Flip https://akveo.github.io/nebular/next/docs/components/flip-card/overview#nbflipcardcomponent
I haven't tested it, but I think this will work:
<style>
nb-flip-card.disable-flip, .disable-flip .front-container {
perspective: none !important;
}
.disable-flip .flipcard-body {
transform-style: flat !important;
}
</style>
If it doesn't work, all I did was go through each element with the chrome devtools and unchecked css properties until it started working:

Awesome, Thank You! it is working properly. 馃憤 :)