Specifing a hover border color on a textfield using a custom theme with Material UI

前端 未结 1 1050
说谎
说谎 2021-01-17 03:34

Having trouble finding documentation on how to change the default border color of an outlined Textfield on hover using a custom theme on Material ui.

相关标签:
1条回答
  • 2021-01-17 04:22
    MuiOutlinedInput: {
          root: {
            "&:hover:not($disabled):not($focused):not($error) $notchedOutline": {
              border: "2px solid",
              borderColor: "yellow"
            }
          }
        }
    

    Reference Example

    0 讨论(0)
提交回复
热议问题