Hi everyone. It’s been a year since I dont use Ionic but now I’m starting a new proyect and I’m facing this issue that looks so simple, I don’t know.
Just any of Ionic styles from lib/ionic/css/ionic.css don’t work. After I create a blank app (ionic start ‘testapp’ blank) in my index.html file I write a few buttons but when I run the server they look without style.
Index
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content>
<button ion-button color="light">Light</button>
<button ion-button>Default</button>
<button ion-button color="secondary">Secondary</button>
<button ion-button color="danger">Danger</button>
<button ion-button color="dark">Dark</button>
</ion-content>
</ion-pane>
</body>
What else do I have to do?
Doing further test I realize that the next code is working.
<button class="button button-positive">
Boton prueba 2
</button>
So I must have an old version of ionic.app.css, how can I update it?