Files
outline/frontend/styles/animations.js
Tom Moor a04af08064 Polish
2017-07-09 20:02:10 -07:00

15 lines
207 B
JavaScript

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