Hi!
I build a dashboard in the past with transparent widgets
Now just updated 2.0.3 and dashboard to 2.30.0
And now my widgets have a background color back from the template
The code that was working is below, any idea how i can get the background of the widget transparant again?
<html>
<head>
<style>
body {
background-color: black;
}
.typewriterbig {
color: #FFFFFF;
font-size: 45px;
font-family: "Veteran Typewriter";
background-color: black;
text-align: center;
vertical-align: middle;
border-color: rgba(62,232,182,1);;
padding: 5px 10px 5px 10px;
margin-top:10px;
border-style: solid;
border-radius: 5px;
}
</style>
</head>
<body>
<span class="typewriterbig">{{msg.payload}}</span>
</body>
</html>