Skip to content

Instantly share code, notes, and snippets.

@geoffreydhuyvetters
Created November 19, 2017 19:52
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 geoffreydhuyvetters/9f27a512b08e6b7923bd2b5abcce5a17 to your computer and use it in GitHub Desktop.
Save geoffreydhuyvetters/9f27a512b08e6b7923bd2b5abcce5a17 to your computer and use it in GitHub Desktop.
import { css } from 'styled-components';
export default {
tablet: (...args) => css`
@media (max-width: 1279px) {
${css(...args)};
}
`,
phone: (...args) => css`
@media (max-width: 660px) {
${css(...args)};
}
`,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment