Gathering detailed insights and metrics for axelra-styled-bootstrap-grid
Gathering detailed insights and metrics for axelra-styled-bootstrap-grid
Gathering detailed insights and metrics for axelra-styled-bootstrap-grid
Gathering detailed insights and metrics for axelra-styled-bootstrap-grid
Re-implementation with styled-components of the bootstrap grid-layout system.
npm install axelra-styled-bootstrap-grid
Typescript
Module System
Node Version
NPM Version
55.2
Supply Chain
68.5
Quality
75.4
Maintenance
100
Vulnerability
98.6
License
TypeScript (85.94%)
JavaScript (14.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
9 Stars
58 Commits
1 Forks
8 Watchers
3 Branches
2 Contributors
Updated on Dec 18, 2023
Latest Version
0.7.6
Package Id
axelra-styled-bootstrap-grid@0.7.6
Unpacked Size
506.70 kB
Size
185.19 kB
File Count
29
NPM Version
10.1.0
Node Version
20.8.0
Published on
Feb 16, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
3
This library is a re-implementation of the bootstrap grid layout system. It uses styled-components as basic components for styling your web layout.
https://lucas-pelloni.gitbook.io/styled-bootstrap-grid/
You can install the library using either yarn or npm.
$ yarn add axelra-styled-bootstrap-grid
Since this library has been built from skratch, you can simply re-styling all components defined on it. For instance, if you want to create a basic grid layout you can do the following:
1import React from "react"; 2import styled from "styled-components"; 3import {Col, Container, Row, Spacer} from "axelra-styled-bootstrap-grid"; 4 5const MyContainer = styled(Container)` 6 margin-top: 10px; 7`; 8 9const Column = styled(Col)` 10 display: flex; 11`; 12 13export const Example = () => { 14 return ( 15 <MyContainer fluid> 16 <Spacer x10 /> 17 <Row> 18 <Column md={5}>asfasf</Column> 19 </Row> 20 </MyContainer> 21 ); 22};
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 1/21 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
88 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More