Files
outline/frontend/styles/animations.js
2017-07-11 23:24:12 -07:00

15 lines
210 B
JavaScript

// @flow
import { keyframes } from 'styled-components';
export const fadeAndScaleIn = keyframes`
from {
opacity: 0;
transform: scale(.98);
}
to {
opacity: 1;
transform: scale(1);
}
`;