15 lines
210 B
JavaScript
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);
|
|
}
|
|
`;
|