I am using LoadingController
to manage the loading page. Below is my code:
presentLoadingCustom() {
let loading = this.loadingCtrl.create({
spinner: 'hide',
content: `
<div padding>
<div class="loadingheader">processing...</div >
</div>
<div>
<p>
Verifying your mobile phone number
</p>
<p>`+
" 011 232 43146"
+
`
</p>
<p>
Please wait
</p>
</div>
`,
duration: 100000
});
How can I change the font size of
loadheader
? I tried addcss
code inscss
file of the same page but fail.How to put spinner at the position I wanted? Say I want to put between
loadheader
and my other text. Currently it is at the right of all my text.