Hey again, new to Ionic and I wanted to know how does one go about to style a text?
I mean I’ve made a simple page, say home.html, likewise:
<ion-content padding>
<h1 class="title-custom" text-center>this is a title</h1>
</ion-content>
and then over at home.scss I’d do this (which as a web developer is a basic form of styling),
page-home {
.title-custom {
font-weight: 300;
padding-top: 2em;
}
}
But when I run the app on browser, it’s like that title is not even considering the “title-custom” class. How do I change anything when it comes to styling?