PurgeCss deletes the keyframe even though it is used; ```scss .component { animation: var(--component-animation) } .component--animated { --component-animation: fadeIn 0.4s; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } ```