Skip to content

Commit

Permalink
Corrected the Media queries in the defaultConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajparashar committed Dec 4, 2016
1 parent 97cde84 commit f7478a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -58,9 +58,9 @@ var Atomizer = require('atomizer');

var defaultConfig = {
"breakPoints": {
'sm': '@media(min-width=750px)',
'md': '@media(min-width=1000px)',
'lg': '@media(min-width=1200px)'
'sm': '@media(min-width:750px)',
'md': '@media(min-width:1000px)',
'lg': '@media(min-width:1200px)'
},
"custom": {
"1": "1px solid #000",
Expand Down

0 comments on commit f7478a4

Please sign in to comment.