transition: fill-opacity 2s ease-in-out 0s, stroke-opacity 2s ease-in-out 0s; svg code example
Example: scss transition
div {
transition: all 0.5s ease;
background: red;
padding: 10px;
}
div:hover {
background: green;
padding: 20px;
}
div {
transition: all 0.5s ease;
background: red;
padding: 10px;
}
div:hover {
background: green;
padding: 20px;
}