Skip to content

Instantly share code, notes, and snippets.

View ericp3reira's full-sized avatar

Eric Pereira ericp3reira

  • OLX Group
View GitHub Profile
@ericp3reira
ericp3reira / styledMediaQueries.tsx
Last active January 30, 2021 20:33
Simple media query helper using TS and Styled Components, inspired by @morajabi's styled-media-query lib
// Inspired by https://github.com/morajabi/styled-media-query
// use:
/*
const MyComponent = styled.div`
${media.lessThan('mobile')`
background-color: red;
border: 2px solid black;
`}