Reputation: 3360
I'm using the official Ionic package for Meteor. Working directly with Ionic, there is a way to write a SASS theme. How would you do this in a Meteor set up?
Upvotes: 2
Views: 102
Reputation: 558
fourseven:scss
package/client/stylesheets/ionic
@import "./ionic/ionic.import.scss";
_variables.import.scss
Upvotes: 1
Reputation: 4054
You might want to have a look at how it was done in Meteoric. Although this package is no longer maintained you can reuse the concepts that are used there:
Note that these packages support an older version of Ionic, if you want to use the newest version, you can include it from here in your "style" folder: https://github.com/driftyco/ionic/tree/master/scss
Upvotes: 1