1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-01 14:00:03 +09:00
namae/src/util/css.ts
2020-08-31 10:05:26 +09:00

14 lines
308 B
TypeScript

import { keyframes } from 'styled-components';
export const mobile = '@media screen and (max-width: 800px)';
export const tablet = '@media screen and (max-width: 1200px)';
export const slideUp = keyframes`
from {
transform: translateY(200%) skewY(10deg);
}
to {
transform: translateY(0) skewY(0);
}
`;