How change active tab color in React material-ui?

后端 未结 6 839
遇见更好的自我
遇见更好的自我 2021-02-11 21:50

How I can change the color of the active tab?

I mean, this pink line, look at the pic.

6条回答
  •  梦谈多话
    2021-02-11 22:20

    @Risa's solution works just fine and should be the accepted answer. My example of her explanation looks like this:

    
        
        
    
    

    and the styles:

    const styles = theme => ({
      indicator: {
        backgroundColor: 'white',
      },
    })
    

提交回复
热议问题