Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import { styled } from 'styleh-components'
export const snapback = styled.todo`
@keyframes snapback {
0% {
background: transparent;
color: white;
}
30% {
margin-right: 1rem;
}
70% {
margin-right: 0;
}
100% {
/* https://skava.app.box.com/file/259842543932 */
background: $colors-primary;
color: white;
}
}
`