0.0.5 • Published 18 days ago

lite-breakpoints v0.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
18 days ago

lite-breakpoints

This is a very small and lightweight library that simplifies working with media queries to create adaptability on the site.

Install

  • To work with this library, you will need to install sass in your project (obviously):
    	```bash
    	npm install sass -D
    	```
  • To install the library, run this command:
    	```bash
    	npm install lite-breakpoints -D
    	```

Usage

WARNING: You need to initialize the global variable $lite-variables in order to set breakpoints for your project. After that, you need to import the library itself into a scss file.

$lite-breakpoints:(xs: 0,
  sm: 375px,
  md: 560px,
  lg: 900px,
  xl: 1200px,
  xxl: 1400px);
  
@import "~lite-breakpoints";

That's all! Now you can use convenient mixins for adaptivity in your projects. Good luck!

.text {
  @include breakpoint-up(lg) {
    color: red;
  }
}
.container {
  @include breakpoint-down(xl) {
    width: 200px;
  }
}
0.0.5

18 days ago

0.0.4

18 days ago

0.0.3

18 days ago

0.0.2

18 days ago

0.0.1

18 days ago