Change colour navbar header Ionic 2

后端 未结 2 1471
时光取名叫无心
时光取名叫无心 2021-01-12 17:13

I have this problem... My colour is white right now, my code is like this:


  
    
      HELLO
    <         


        
2条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-12 17:35

    Might be better to overwrite the ionic variable in your variables.scss file

    So you can create a custom color variable

     $new-color:#55acee;
    

    and then pass it into the ionic variable

    $toolbar-ios-background:($new-color);
    $toolbar-md-background($new-color);
    $toolbar-wp-background($new-color);
    

    you can find all the ionic variables here

提交回复
热议问题