0

I want to remove underline of Date Picker. image By using inspect I did it but its not working by css. How can I do it by css

::ng-deep{
    &.mdc-line-ripple::after{
        border-bottom-style:none !important ;
    }
}
hoangbh1104126
  • 164
  • 1
  • 10
Aabi
  • 1

1 Answers1

0

You are using regular CSS. Try to use:

::ng-deep .mdc-line-ripple::after {
  border-bottom-width: 0 !important;
}

See more:

hoangbh1104126
  • 164
  • 1
  • 10