1.0.9 • Published 7 years ago

sass-helper v1.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

SASS Helper

npm

Getting started

  • Install with Bower: bower install sass-helper.
  • Add code to the beginning of Your sass file @import "../bower/sass-helper/dist/sass-helper";

Use

SASS Helper focuses on the use of @extend in sass, to create a more compact and less repetitive code.

Example

#example {
    @extend %indent-0-1, %position-relative, %clearfix, %vertical-align-top;
}
#example {
    position: relative;
    vertical-align: top;
    padding: 0 1.5rem;
    zoom: 1
}

#example, #example:after, #example:before {
    display: block
}

#example:after {
    clear: both
}

#example:after, #example:before {
    content: '';
    font-size: 0;
    height: 0;
    visibility: hidden
}

License

MIT

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago