I have an angular2 application where I am using scss for styling. I need to fix a small alignment issue only in Microsoft Edge. I have written the css like-
@supports (-ms-ime-align:auto) {
.checkbox {
padding-top: 10px;
}
}
but when I hover on @supports it gives me error-
[scss] at-rule unknown
Any idea why is this not working.