Polish
This commit is contained in:
14
frontend/styles/animations.js
Normal file
14
frontend/styles/animations.js
Normal file
@ -0,0 +1,14 @@
|
||||
// @flow
|
||||
import { keyframes } from 'styled-components';
|
||||
|
||||
export const modalFadeIn = keyframes`
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale(.98);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user