custom-grid
v1.0.8
Published
Multiple Breakpoint with respective Grid column and Gutter Width
Downloads
10
Maintainers
Readme
Custom Grid
Custom Grid is customised version of the bootstrap grid where this is available with Multiple Grid column, multiple gutter width for respective multiple breakpoints.
Getting Started
Default configurations are 3 breakpoints:
col name | number of col | gutter width ------------ | ------------- | ----------- xs | 4 | 10px sm | 8 | 20px md | 12 | 30px
If you want to use default configuration provided here.
- Run
npm i custom-grid
to install this package.
OR
- You can download the folder and update the variable's value as per individual requirement.
You can use any build tool to compile the .scss file.
Webpack Configuration
Below is the guidance for webpack configuration:
- Create two files in src folder style.scss and index.js
- Add the path of node modules custom-grid .scss file in your style.scss like
@import "~custom-grid/scss/bootstrap-grid";
- Include style.scss path in index.js file like
import './style.scss';
- Add below code to webpack.config.js
const path = require('path');
const miniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
mode: "development",
entry: "./src/index.js",
output: {
path: path.join(__dirname, "/dist"),
filename: "bundle.js"
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
{
test: /\.(sa|sc|c)ss$/,
use: [miniCssExtractPlugin.loader,'css-loader', 'sass-loader'],
}
]
},
plugins: [
new miniCssExtractPlugin({
filename: 'style.css'
})
]
};
Usage of SCSS function
Example to call sass function to create container or row or columns with respect to different breakpoints
.newfluidcontainer {
@include make-container();
}
.newcontainer {
@include make-container();
@include make-container-max-widths();
}
.newrow {
@include make-row();
}
.newclass {
@include make-col-ready();
@include make-column(2, xs);
@include make-col-offset(1, 4);
@include media-breakpoint-down(xs) {
margin-top: 32px;
}
@include media-breakpoint-up(sm) {
@include make-column(4, sm);
@include make-col-offset(0, 8);
}
}
OR you can use old school style
<div class="col-4 col-sm-8 col-md-12">
........
</div>