constelation / monorepo

Mono repo for constelation's Components, functions, and CONSTANTS
https://constelation.github.io/monorepo/
MIT License
12 stars 3 forks source link

Utilize glamor to merge media query objects #12

Open mikehobi opened 8 years ago

mikehobi commented 8 years ago

Merge media query objects!

e.g.

<Style_
  style={{
    ['@media screen and (min-width: 768px)']: {
      backgroundColor: 'red',
    }
  }}
>

  // overwrites former media object, no background color :(
  <View
    style={{
      ['@media screen and (min-width: 768px)']: {
        borderColor: 'blue',
      }
    }}
  />

</Style_>