Skip to content

Commit

Permalink
Merge pull request #99 from kybishop/use-width-for-column-sizes-inste…
Browse files Browse the repository at this point in the history
…ad-of-max-width

fix(css) use width instead of max-width for column sizes
  • Loading branch information
RobbieTheWagner authored Dec 28, 2016
2 parents 2e4e94b + 9ebd008 commit 2e6a065
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addon/styles/grid/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
padding-right: pixel($gutter-padding / 2);
padding-left: pixel($gutter-padding / 2);
@include flex(1 0 percentage($size / $columns));
max-width: percentage($size / $columns);
width: percentage($size / $columns);
}


Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/app/routes/tests/sustain-b/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import Ember from 'ember';

export default Ember.Route.extend({
model() {
return { foo: 456, bar: { foo: 'xyz' }};
return { foo: 456, bar: { foo: 'xyz' } };
}
});
2 changes: 1 addition & 1 deletion tests/dummy/app/routes/tests/sustain/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import Ember from 'ember';

export default Ember.Route.extend({
model() {
return { foo: 123, bar: { foo: 'abc' }};
return { foo: 123, bar: { foo: 'abc' } };
}
});

0 comments on commit 2e6a065

Please sign in to comment.