I have a simple Ionic2/3 example using the Tabs template in Stackblitz. I'm trying the change the size of P & color, yet it's not working (No error message).
home.scss
page-home{
p {
font-size: 100px !important;
color: red;
}
}
home.html
<ion-header>
<ion-navbar>
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<p>TEST SHOULD BE 50PX</p> <!-- there is no change here -->
</ion-content>