mirror of
https://github.com/uetchy/namae.git
synced 2025-07-01 22:10:04 +09:00
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
import {keyframes} from 'styled-components';
|
|
|
|
export const mobile = '@media screen and (max-width: 800px)';
|
|
|
|
export const slideUp = keyframes`
|
|
from {
|
|
transform: translateY(150%) skewY(10deg);
|
|
}
|
|
to {
|
|
transform: translateY(0) skewY(0);
|
|
}
|
|
`;
|