You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE:
Due to a current limitation of the Meteor packaging system, the above path may not exist the first time you run your Meteor app after installing this package. This will cause an error saying the file to import was not found. This may also occur if you run meteor reset. Restarting your app should fix this problem. See meteor/meteor#2606 and meteor/meteor#2796 for more info.
Customization
Importing the source SASS files as opposed to including compiled or CDN versions allows you to easily customize or theme your app using SASS variables.
_app-variables.scss
// Change Ionic's `positive` color to Meteor's red color:
$positive: #DE4F4F;
app.scss
// Import your custom variables
@import 'app-variables';
// Then import ionic after. Ionic will use your variables instead of it's own.
@import '.meteor/local/build/programs/server/assets/packages/meteoric_ionic-sass/ionic';
Icons
You may also want to install our Ionicons package.
Docs
See the official Ionic CSS Docs site for usage instructions.