Reputation: 1715
i'm trying to import/use the default dark Nativescript theme and getting the following error. Any idea what i'm doing wrong?
error: JS: Error: Css styling failed: Error: undefined:1:10: missing '{'
my app.css:
@import 'nativescript-theme-core/css/core.dark.css';
Upvotes: 1
Views: 575
Reputation: 1715
It turns out I had styleUrls: ['./app.css'] in my component definition... Removing that fixed this issue...
Upvotes: 1