I'll preface this by saying that I'm new to CSS. I would like to add an animation to the tooltip so that it opens gradually and not instantly.
I've tried the following inside style.css:
@keyframes tooltip-animation {
from {transform: scale(0);}
to {transform: scale(1);}
}
Running waybar yields this error:
No property named 'width' [or 'transform', in the second case]
How can add this animation? Also, how do I know which properties are valid which are not?
I'll preface this by saying that I'm new to CSS. I would like to add an animation to the tooltip so that it opens gradually and not instantly. I've tried the following inside
style.css
:and alternatively
Running waybar yields this error:
No property named 'width' [or 'transform', in the second case]
How can add this animation? Also, how do I know which properties are valid which are not?