1

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">
ethan
  • 1,881
  • 2
  • 17
  • 31

2 Answers2

1

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",
 ],
CharanRoot
  • 6,181
  • 2
  • 27
  • 45
0

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

@import '../node_modules/dragula/dist/dragula.css';
Bhaskararao Gummidi
  • 2,513
  • 1
  • 12
  • 15