Skip to content

Commit 8c74b5d

Browse files
authored
Merge pull request #86 from 7ninjas/hotfix/responsive-prop-px
added missing px
2 parents ea70295 + 8aac937 commit 8c74b5d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ All notable changes to this project will be documented in this file.
1616
and _variables.scss
1717
- fixed buttons documentation
1818
- fixed border-radius documentation and variables
19-
- fixed media-breakpoint-variant mixin, variables and documentation
19+
- [Issue #80](https://github.com/7ninjas/scss-mixins/issues/80) fixed media-breakpoint-variant mixin, variables and documentation
2020
- [Issue #80](https://github.com/7ninjas/scss-mixins/issues/80) removed `absolute` property from `pseudo mixin` in
2121
`positioning` documentation
22+
- [Issue #80](https://github.com/7ninjas/scss-mixins/issues/80) added missing `px` in `responsive-prop` mixin in
23+
`responsive` documentation
2224

2325
## [v1.0.0-alpha2] - 2018-01-16
2426
:rocket: New feature:

docs/responsive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Assigned top margin for different screen resolutions
2525
@include responsive-prop(margin-top, (xxl: 160px, xl: 160px, lg: 130px, md: 100px, sm: 70px, xs: 50px));
2626

2727
@include responsive-prop(margin-top, (
28-
down xs: 12,
29-
sm: 10,
30-
between md lg: 3,
31-
up xl: 2
28+
down xs: 30px,
29+
sm: 50px,
30+
between md lg: 80px,
31+
up xl: 150px
3232
));
3333
}
3434
```

0 commit comments

Comments
 (0)