box-shadow #687
flashiflashi
started this conversation in
General
box-shadow
#687
Replies: 1 comment
-
try this?
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like a linear-gradient on a box-shadow.
I have several light entities I would like to display the colors linearly.
this code only works in edit mode why? is there any other solution?
type: custom:bubble-card
card_type: button
entity: light.salon
styles: |
.bubble-button-card-container {
overflow: visible;
}
.bubble-button-card-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, blue, red, green);
filter: blur(15px);
z-index: -1;
}
THANKS
Beta Was this translation helpful? Give feedback.
All reactions