Skip to content Skip to sidebar Skip to footer

Trouble Implementing Meteoric (meteor-ionic) Package -- Ionic Styling Not Showing Up

I want to create a Meteor app that implements the Meteoric package, enabling me to use Ionic UI features. Going off of this: https://github.com/meteoric/meteor-ionic/blob/master/GU

Solution 1:

Answer : I needed to include the Ionic styles in my app's stylesheet:

@import'.meteor/local/build/programs/server/assets/packages/meteoric_ionic-sass/ionic';
@import'.meteor/local/build/programs/server/assets/packages/meteoric_ionicons-sass/ionicons';

Solution 2:

As shown in this official example you really need to import styles

@import'.meteor/local/build/programs/server/assets/packages/meteoric_ionic-sass/ionic';
@import'.meteor/local/build/programs/server/assets/packages/meteoric_ionicons-sass/ionicons';

Post a Comment for "Trouble Implementing Meteoric (meteor-ionic) Package -- Ionic Styling Not Showing Up"