Skip to content

Commit

Permalink
Fixes #75
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferjoseph committed May 22, 2015
1 parent 913111e commit f36e4d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/css/flexboxgrid.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
:root {
--gutter-width: 1rem;
--outer-margin: 2rem;
--gutter-compensation: calc(var(--gutter-width / 2) * -1 );
--half-gutter-width: calc(var(--gutter-width / 2) );
--gutter-compensation: calc((var(--gutter-width) * 0.5) * -1 );
--half-gutter-width: calc((var(--gutter-width) * 0.5) * -1 );

This comment has been minimized.

Copy link
@wyattanderson

wyattanderson Jun 17, 2015

@kristoferjoseph is the switch from negative to positive for --half-gutter-width intentional here? It breaks gutters.

This comment has been minimized.

Copy link
@kristoferjoseph

kristoferjoseph Jun 17, 2015

Author Owner

Good catch! Good news is this is not in the published version. This change was made for inclusion into the 7.0 release that I've been slaving away over ;)

--screen-xs-min: 30em;
--screen-sm-min: 48em;
--screen-md-min: 62em;
Expand All @@ -21,7 +21,7 @@
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-right: --outer-margin, 2rem);
padding-right: var(--outer-margin, 2rem);
padding-left: var(--outer-margin, 2rem);
}

Expand Down

0 comments on commit f36e4d3

Please sign in to comment.