icons 0.5.2

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Snowflake - wobble/shake animation */
[data-name="SnowflakeAnimate"]:hover {
    animation: snowflakeWobble 0.4s ease-in-out;
    transform-origin: center;
}

@keyframes snowflakeWobble {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-5deg); }
    40% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}