Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "styled-is", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"license": "MPL-2.0", | ||
@@ -5,0 +5,0 @@ "repository": "github:yldio/joyent-portal", |
@@ -31,33 +31,33 @@ # styled-is | ||
is('red')` | ||
${is('red')` | ||
background-color: red; | ||
`; | ||
`}; | ||
is('blue')` | ||
${is('blue')` | ||
background-color: blue; | ||
`; | ||
`}; | ||
is('red', 'blue')` | ||
${is('red', 'blue')` | ||
opacity: 1; | ||
`; | ||
`}; | ||
is('left')` | ||
${is('left')` | ||
float: left; | ||
`; | ||
`}; | ||
is('right')` | ||
${is('right')` | ||
float: right; | ||
`; | ||
`}; | ||
isNot('left', 'right')` | ||
${isNot('left', 'right')` | ||
float: center; | ||
`; | ||
`}; | ||
isOr('left', 'right')` | ||
${isOr('left', 'right')` | ||
position: relative; | ||
`; | ||
`}; | ||
isSomeNot('red', 'left')` | ||
${isSomeNot('red', 'left')` | ||
wat: 1; | ||
`; | ||
`}; | ||
`; | ||
@@ -64,0 +64,0 @@ |
198924