angular2 Dragula css cursor grab/grabbing not working

998 views Asked by At

Angular 2.4.8, dragula 3.10.6, it seems the cursor styling for grabbing is not applying when dnd. any suggestions?

css is imported in the index.html as

<link rel="stylesheet" href="../node_modules/dragula/dist/dragula.min.css">
2

There are 2 answers

0
CharanRoot On

It's working for me. I am using Angular Cli and i placed CSS file inside my .angular-cli.json file

  "styles": [
 "../node_modules/dragula/dist/dragula.css",
 ],
0
Bhaskararao Gummidi On

You can import css in style.css too like below.

@import '../node_modules/dragula/dist/dragula.css';