Skip to content

Commit

Permalink
Corrected mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Phlow committed Jul 17, 2023
1 parent aafad89 commit 2dd89bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _sass/foundation-components/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ $last-child-float: $opposite-direction !default;
// use @include grid-row(nest); to include a nested row
@if $behavior == nest {
width: auto;
margin-#{$default-float}: calc($column-gutter / 2);
margin-#{$opposite-direction}: calc($column-gutter / 2);
margin-#{$default-float}: calc(-1*($column-gutter / 2));
margin-#{$opposite-direction}: calc(-1*($column-gutter / 2));
margin-top: 0;
margin-bottom: 0;
max-width: none;
Expand Down

0 comments on commit 2dd89bd

Please sign in to comment.