@funficientSubmitted about 1 year ago
Hey, I have one question. Why is my span color not overwriting the transparent class setting? What am I doing wrong?
Here is the section of the CSS I'm referring to:
.transparent {
color: var(--color--neutral-white);
opacity: 0.7;
}
.white {
color: var(--color--neutral-white);
}
span {
color: var(--color--neutral-white);
opacity: 1;
font-size: 2rem;
font-weight: 800;
}
Any other comments and feedback are welcome!
Thank you :-)