Im trying to override the margin-top style of react-datepicker-popper:
.react-datepicker-popper[data-placement^="bottom"] {
margin-top: 10px;
So in my main.scss file i'm writing
.react-datepicker-popper[data-placement^="bottom"] {
margin-top: -10px !important;
}
but it does not seem to work. Any ideas why?