Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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;
    }
  }
`