Where to import custom SASS styles now with Ionic 2 RC0

It worked for me, I forgot to put the class in the of the html file… I thought it was automatic, but it would not make sense this be automatic because you should decide where to put your style. Thanks.

I want to make my text right aligned in “ion-option”. Using Chrome inspection I found out that if I override “alert-tappable” css class and set the “text-align” to right, it would do it, but I cannot do that somehow. Can anyone help me out please? I have a scss file in my target page and in it I have:
my-page{
.m-text-right {
text-align: right;
}
}
In my .ts file I have also:
selector: ‘my-page’