Styling ionic 2 toast

前端 未结 9 2011
深忆病人
深忆病人 2021-02-05 07:32

Is there any way to style the text message within an ionic 2 toast?

I have tried this:

9条回答
  •  不思量自难忘°
    2021-02-05 07:40

    You should be able to change any of the message styling in the css using .toast-message selector:

    .toast-message { 
        font-family: Helvetica,
        color: red
    }
    

    Or, if you look at the docs (http://ionicframework.com/docs/v2/api/components/toast/Toast/) there is a cssClass property you can use to assign your toast a specific class and then style that.

提交回复
热议问题