Skip to content

Commit

Permalink
Fix grid offset
Browse files Browse the repository at this point in the history
  • Loading branch information
parsakafi committed Jun 21, 2020
1 parent 8ce32bc commit 5ffd369
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 63 deletions.
118 changes: 59 additions & 59 deletions dist/bootstrap-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/bootstrap-rtl.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bootstrap-rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bootstrap-rtl.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scss/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@mixin make-col-offset-rtl($size, $columns: $grid-columns) {
$num: $size / $columns;
margin-right: if($num == 0, 0, percentage($num));
margin-left: inherit;
margin-left: initial;
}

@mixin make-grid-columns-rtl($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
Expand Down

0 comments on commit 5ffd369

Please sign in to comment.