1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-01 22:10:04 +09:00
namae/src/util/css.ts

14 lines
308 B
TypeScript
Raw Normal View History

2020-08-31 08:41:53 +09:00
import { keyframes } from 'styled-components';
2020-03-06 00:05:54 +09:00
2020-08-31 08:41:53 +09:00
export const mobile = '@media screen and (max-width: 800px)';
export const tablet = '@media screen and (max-width: 1200px)';
2020-03-06 00:05:54 +09:00
export const slideUp = keyframes`
from {
2020-06-20 18:19:05 +09:00
transform: translateY(200%) skewY(10deg);
2020-03-06 00:05:54 +09:00
}
to {
2020-03-08 11:44:34 +09:00
transform: translateY(0) skewY(0);
2020-03-06 00:05:54 +09:00
}
2020-08-31 08:41:53 +09:00
`;