Skip to content

Instantly share code, notes, and snippets.

@pavelvlasov
Last active July 24, 2018 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavelvlasov/574daa992d85afb2e80edfc4dcc6ab3b to your computer and use it in GitHub Desktop.
Save pavelvlasov/574daa992d85afb2e80edfc4dcc6ab3b to your computer and use it in GitHub Desktop.
Sprite container
const Container = styled.div`
width: ${({ width }) => width}px;
height: ${({ height }) => height}px;
overflow: hidden;
transform: scale(${({ scale }) => `${scale}, ${scale}`});
transform-origin: top left;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment