Skip to content

Commit

Permalink
Merge pull request 7ninjas#85 from 7ninjas/hotfix/pseudo-mixin
Browse files Browse the repository at this point in the history
pseudo mixin
  • Loading branch information
Nerdy-Girl authored Feb 14, 2018
2 parents 355220e + 87a588e commit c2def76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ All notable changes to this project will be documented in this file.
- fixed links in readme for gradients
- [Issue #69](https://github.com/7ninjas/scss-mixins/issues/69) changed `$grid-gutter-widths` variable in mixin files
and _variables.scss
- [Issue #80](https://github.com/7ninjas/scss-mixins/issues/80) removed `absolute` property from `pseudo mixin` in
`positioning` documentation

## [v1.0.0-alpha2] - 2018-01-16
:rocket: New feature:
Expand Down
5 changes: 2 additions & 3 deletions docs/positioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,15 @@ _Mixin which helps with positioning pseudo elements with content, display and po

### Parameters
- `$display` - variable which will be used as a value for ```display``` (**default ```block```**)
- `$pos` - variable which will be used as a value for ```position``` (**default ```absolute```**)
- `$content` - variable which will be used as a value for ```content``` (**default empty string**)

### Usage:
Assigned element with inline display and fixed position
Assigned element with inline display and default content

```scss
.examplePseudoClass {
&:before {
@include pseudo(block, absolute);
@include pseudo(block);
...
}
&:after {
Expand Down

0 comments on commit c2def76

Please sign in to comment.