Is it possible to set custom properties such as ion-content’s “–background” using SCSS variables?
I have tried like this
ion-content{
–ion-background-color: $black-blue;
}
but it does nothing, where as this works.
ion-content{
border-color: $black-blue;
–ion-background-color: #00BCD4;
}
The border-color is set to my $black-blue color and the background colour comes through so I know my scss variable is valid
1 post - 1 participant