Skip to content

Commit

Permalink
Merge pull request #9 from blueberryapps/fix-style-ordering
Browse files Browse the repository at this point in the history
Fix style ordering
  • Loading branch information
Jiří Orság committed Apr 17, 2016
2 parents 636b8bb + 8cb4a0d commit 0a07403
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "radium-bootstrap-grid",
"version": "0.1.0",
"version": "0.1.1",
"description": "Bootstrap grid system using inline styles",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
Expand Down
28 changes: 14 additions & 14 deletions src/column.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,31 +72,31 @@ export default class Column extends Component {
<div
style={[
column,
lg && columnWidth['lg'][lg],
lgHidden && columnHidden['lg'],
lgOffset && columnOffset['lg'][lgOffset],
lgPull && columnPull['lg'][lgPull],
lgPush && columnPush['lg'][lgPush],
md && columnWidth['md'][md],
mdHidden && columnHidden['md'],
mdOffset && columnOffset['md'][mdOffset],
mdPull && columnPull['md'][mdPull],
mdPush && columnPush['md'][mdPush],
xsHidden && columnHidden['xs'],
xsOffset && columnOffset['xs'][xsOffset],
xsPull && columnPull['xs'][xsPull],
xsPush && columnPush['xs'][xsPush],
ms && columnWidth['ms'][ms],
msHidden && columnHidden['ms'],
msOffset && columnOffset['ms'][msOffset],
msPull && columnPull['ms'][msPull],
msPush && columnPush['ms'][msPush],
md && columnWidth['md'][md],
mdHidden && columnHidden['md'],
mdOffset && columnOffset['md'][mdOffset],
mdPull && columnPull['md'][mdPull],
mdPush && columnPush['md'][mdPush],
sm && columnWidth['sm'][sm],
smHidden && columnHidden['sm'],
xs && columnWidth['xs'][xs],
smOffset && columnOffset['sm'][smOffset],
smPull && columnPull['sm'][smPull],
smPush && columnPush['sm'][smPush],
xsHidden && columnHidden['xs'],
xsOffset && columnOffset['xs'][xsOffset],
xsPull && columnPull['xs'][xsPull],
xsPush && columnPush['xs'][xsPush],
lg && columnWidth['lg'][lg],
lgHidden && columnHidden['lg'],
lgOffset && columnOffset['lg'][lgOffset],
lgPull && columnPull['lg'][lgPull],
lgPush && columnPush['lg'][lgPush],
style
]}
{...props}
Expand Down

0 comments on commit 0a07403

Please sign in to comment.