Try this:
// Black with 75% opacity
#main-outlet {
background-color: rgba(0, 0, 0, 0.75);
}
It’s looking for a decimal value rather than the percent.
Try this:
// Black with 75% opacity
#main-outlet {
background-color: rgba(0, 0, 0, 0.75);
}
It’s looking for a decimal value rather than the percent.