1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 18:08:11 +09:00

chore: add animation

This commit is contained in:
2020-03-06 00:05:54 +09:00
parent 769548ccc9
commit 6f87b7fc5b
3 changed files with 80 additions and 37 deletions

View File

@@ -1 +1,12 @@
import {keyframes} from 'styled-components';
export const mobile = '@media screen and (max-width: 800px)';
export const slideUp = keyframes`
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
`;