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

13 lines
243 B
TypeScript
Raw Normal View History

2020-03-06 00:05:54 +09:00
import {keyframes} from 'styled-components';
2019-09-17 14:30:26 +09:00
export const mobile = '@media screen and (max-width: 800px)';
2020-03-06 00:05:54 +09:00
export const slideUp = keyframes`
from {
2020-03-07 13:16:01 +09:00
transform: translateY(150%) 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
}
`;