How to get rid of underline for Link component of React Router?

后端 未结 17 2599
独厮守ぢ
独厮守ぢ 2020-12-23 00:16

I have the following:

How do I get rid of the blue underline? The code is below:



        
17条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-23 00:40

    Well you can simply use this piece of code in your scss file; This will remove that unwanted color change,

    a:-webkit-any-link {
      &:hover {
        color: white;
      }
    }
    

提交回复
热议问题