@flyckt-coding/scss-pack
v1.0.3
Published
A scss pack with usefull variables and mixins
Downloads
3
Readme
scss-pack
a scss pack with mixins, variables and animations
Installation
- Run: npm install @flyckt-coding/scss-pack
- Import the pack to your main scss file: @import "~@flyckt-coding/scss-pack/";
- To use classes on elements, import it to your react component: import '@flyckt-coding/scss-pack';
- Start using the features
Featured varaiables:
- Font sizes in:
- px(2px-54px)
- em(2px-54px)
- rem(2px-54px)
- vw(2px-54px)
- vh(2px-54px)
- Flex box variants
- Responsive breakpoints
- mobile()
- mobile-landscape()
- tablet()
- tablet-landscape()
- desktop()
- Colors
- Mixins
mixin regular($h1: $f-5xl, $h2: $f-3xl, $p: $f-md){ h1( font-size: $h1; ) h2( font-size: $h2; ) p( font-size: $p; ) }
@mixin desktop($width) { @if($width){ @media screen and (min-width: $width) { @content; } } @