FE Implementation quirks
1. base class
- base properties
- transition property
2. animation class
- animated property
.button {
background: blue;
font-size: 13px;
border-radius: 5px;
transition: background 0.3s linear;
}.button--alert {
background: red;
}