A simple template with HTML, SASS and JS configured. To compile sass you can compile with vs code extension.
How to configure
- Clone the repo git clone https://github.com/Chandrakanthpadi/responsive-boilerplate.git <YOUR_PROJECTNAME>
- cd <YOUR_PROJECTNAME>
- git remote remove origin
- git remote add origin yourRemoteUrl
Follow the below order while writing the media queries
css_selector{ //Styles for mobile @include breakpoint-up(medium){ // Styles for tablets } @include breakpoint-up(large){ // Styles for laptops } }