npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grid-bootstrap5

v0.0.4

Published

Display: grid extension classes for Bootstrap5

Downloads

7

Readme

npm npm NPM

grid-bootstrap5

Responsive grid classes for Bootstrap 5. Extends Bootstrap 5 with display: grid utilities. Uses Bootstrap 5 variables and mixins. It will pick up Bootstrap's or your override varaibles such as $grid-breakpoints. To generate responsive grid utilities.

Looking for Bootstrap 4 support?

We've got you covered. Use grid-bootstrap

Install

npm i grid-bootstrap5
yarn add grid-bootstrap5

Use ready css

Link our distributed script in your html's head:

<link rel="stylesheet" type="text/css" href="//unpkg.com/grid-bootstrap5"></script>
<!-- `grid-bootstrap` is now available on the page -->

How to use

For compiling

Include the entry point grid-bootstrap-import.scss into your scss file. Replace {relative/path} with the path of your setup

@import '{relative/path}/node_modules/bootstrap/scss/functions';
@import '{relative/path}/node_modules/bootstrap/scss/variables';
@import '{relative/path}/node_modules/bootstrap/scss/mixins';
@import '{relative/path}/node_modules/bootstrap/scss/grid/grid';
@import '{relative/path}/node_modules/grid-bootstrap/scss/variables';

@import '{relative/path}/node_modules/grid-bootstrap5/scss/grid-bootstrap-import';

Or, if you already imported bootstrap sources just import grid bootstrap files

@import '{relative/path}/node_modules/bootstrap/scss/grid/grid';
@import '{relative/path}/node_modules/grid-bootstrap5/scss/grid-bootstrap-import';

Variables

You can override the following variables to adapt to your setup.

$max-columns: 8 !default;
$max-rows: 8 !default;

Now you can compile your scss.

For using compiled

TBD

Generated css classes

General class

.d-grid

Grid col start/end

.grid-col-start-#
.grid-col-*-start-#
.grid-col-end-#
.grid-col-*-end-#
...etc

Grid row start/end

.grid-row-start-#
.grid-row-*-start-#
.grid-row-end-#
.grid-row-*-end-#
...etc

Grid template columns

This will create classes to set even width grid columns

.grid-cols-#
.grid-cols-*-#
...etc

Grid spacing utilities

Row gap

.grid-rg-#
.grid-rg-*-#
...etc

Column gap

.grid-cg-#
.grid-cg-*-#
...etc

Justify self

.just-self-*-start
.just-self-*-end
.just-self-*-center
.just-self-*-stretch
...etc