Skip to content

Commit

Permalink
Fix max-w
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed Mar 17, 2024
1 parent bd0f1bc commit 0a95c56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@linwooddev/style",
"description": "",
"main": "index.js",
"version": "0.3.5",
"version": "0.3.6",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "sass --watch scss/:css/",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/scss/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
min-width: $value;
}
.max-w-#{$breakpoint} {
min-width: $value;
max-width: $value;
}
.min-h-#{$breakpoint} {
min-height: $value;
Expand Down
1 change: 1 addition & 0 deletions packages/web/scss/_vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ $sizing: (
"max": max-content,
"min": min-content,
"full": 100%,
"auto": auto,
) !default;
$mobile-breakpoint: map-get($breakpoints, "sm") !default;
$spacing: (
Expand Down

0 comments on commit 0a95c56

Please sign in to comment.