Skip to content

Commit

Permalink
Add box-sizing property to Columnizer mixin.
Browse files Browse the repository at this point in the history
  • Loading branch information
selfishprimate committed Jul 13, 2021
1 parent 2177767 commit 020edb0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
_Change is the essence._

## 1.1.3
* Add box-sizing property to Columnizer mixin.

## 1.1.2
* Uptade for security vulnerabilities.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Halil İbrahim Çakıroğlu",
"main": "scss/_gerillass.scss",
"license": "Apache-2.0",
"version": "1.1.2",
"version": "1.1.3",
"repository": {
"type": "git",
"url": "https://github.com/selfishprimate/gerillass"
Expand Down
1 change: 1 addition & 0 deletions scss/_gerillass-prefix.scss
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@
$fill: false;
display: flex;
flex-wrap: wrap;
@include border-box;
> * {
@if length($params) == 1 {
flex: 0 0 calc(100% / #{$columns});
Expand Down
1 change: 1 addition & 0 deletions scss/library/_columnizer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
$fill: false;
display: flex;
flex-wrap: wrap;
@include border-box;
> * {
@if length($params) == 1 {
flex: 0 0 calc(100% / #{$columns});
Expand Down

0 comments on commit 020edb0

Please sign in to comment.