1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-02 14:20:03 +09:00
namae/web/src/util/css.ts

13 lines
221 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 {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
`;