I am currently in the process of migrating source code from ionic3 to ionic4. The invocation of text-center in HTML is producing an error due to changes made in Ionic4.
[DEPRECATED][CSS] Ionic CSS attributes are deprecated.
Replace:
'<p text-center>'
With:
'<p class="ion-text-center">'
How can I update the following code for use in ionic4?
Your assistance would be greatly appreciated.
Written for ionic3
html
<p class="txt_login" text-center (click)="Login()">LOGIN</p>
scss
.txt_login{
color:white;
font-size: 10.5rem;
}