Gathering detailed insights and metrics for niduscss-lib-mixins
Gathering detailed insights and metrics for niduscss-lib-mixins
Gathering detailed insights and metrics for niduscss-lib-mixins
Gathering detailed insights and metrics for niduscss-lib-mixins
npm install niduscss-lib-mixins
Typescript
Module System
Min. Node Version
Node Version
NPM Version
CSS (88.59%)
JavaScript (11.41%)
Total Downloads
3,675
Last Day
4
Last Week
12
Last Month
31
Last Year
187
MIT License
2 Stars
83 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Sep 11, 2018
Minified
Minified + Gzipped
Latest Version
1.4.0
Package Id
niduscss-lib-mixins@1.4.0
Size
2.26 kB
NPM Version
3.10.8
Node Version
6.9.1
Cumulative downloads
Total Downloads
Last Day
0%
4
Compared to previous day
Last Week
1,100%
12
Compared to previous week
Last Month
-3.1%
31
Compared to previous month
Last Year
28.1%
187
Compared to previous year
No dependencies detected.
Common mixins for niduscss framework.
1$ npm install niduscss-lib-mixins
Import styles:
styles.css:
1/* Libraries 2 ========================================================================== */ 3@import "niduscss-lib-mixins"; 4 5/* Other styles */
Note: Be sure that the import is before all styles to use the mixins
1/* Container */ 2.Container { 3 @mixin u-alignContainer; 4 5 /* Import the vertical centering ghost mixin */ 6 &::before { 7 @mixin u-alignGhost; 8 } 9}
Use the mixin homogenizeLink to homogenize a link element. To change color use a parent element of the link:
1/* Change the color of link */ 2nav { 3 color: salmon; 4} 5 6/* Homogenize the link elements inside a nav */ 7nav a { 8 @mixin homogenizeLink; 9}
Remove outline of a element:
1button { 2 @mixin removeOutline; 3}
1/* Define the custom media querie */ 2@custom-media --small-viewport (min-width: 37.5rem); 3 4/* Import the mixin */ 5@mixin respondTo --small-viewport { 6 height: 2rem; 7}
1header { 2 /* Import the mixin */ 3 @mixin u-shadowBottom; 4}
1label { 2 /* import ellipsis hack mixin */ 3 @mixin u-textEllipsis; 4}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
30 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-23
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