custom CSS issue
Are custom CSS allowed for the system UI? “Settings side page” I want to make it a little transparent to match my theme. I found the correct mantine and I can turn it off via the dev tools I can even change opacity in dev tools but when I try through custom CSS in homarr it doesn’t work
5 Replies
Unless “background-opacity: .5 ; “ is not the correct format
There is no
background-opacity
attribute. Not sure why your browser accepts it in the dev tools
You must override the background-color AFAIKHow would it be color for opacity?
?
I don't understand what you mean
Just use
background-color: transparent;
if you don't want any color. Add backdrop-filter: blur(5px);
for blurAhhh others were opacity: .x sorry I’m new too css trying to learn didn’t know you used transparent for color thanks 🙏