A strange, humorous web developer that enjoys to crack lame jokes and plays the bass clarinet. Yeah, a web dev that plays an instrument! 🤯 I like to roast people 🚩
Location
United States of America
Pronouns
He, him (I'm HIM!)
Work
Owner of BurchWeb enterprises and does odd jobs. I'm poor...
Hey just found a simple error in your CSS
.theme-switch-wrapper {
display: flex;
align-items: center;
em {
margin-left: 10px;
font-size: 1rem;
}
}
You have a nested selector here, this does not work in CSS only SCSS
so to fix it I just broke out the one selector to be on its own and not nested one!
.theme-switch-wrapper {
display: flex;
align-items: center;
}
.theme-switch-wrapper em {
margin-left: 10px;
font-size: 1rem;
}
Hold up, it worked for me! And I was using CSS. 🤔