
I was able to get the styling working by adding this link to my index.html page
<link href="https://unpkg.com/[email protected]/dist/css/angular-calendar.css" rel="stylesheet">
It would not work when I had this though:
<link href="/node_modules/angular-calendar/dist/css/angular-calendar.css" type="text/css" rel="stylesheet">
Any ideas why?
It's probably because your local dev server isn't serving the node_modules folder directly. Without knowing anything about your setup its impossible to really know more. There are examples for all common build tools here that might help you: https://github.com/mattlewis92/angular-calendar/tree/master/build-tool-examples
Most helpful comment
I was able to get the styling working by adding this link to my index.html page
<link href="https://unpkg.com/[email protected]/dist/css/angular-calendar.css" rel="stylesheet">It would not work when I had this though:
<link href="/node_modules/angular-calendar/dist/css/angular-calendar.css" type="text/css" rel="stylesheet">Any ideas why?