Gathering detailed insights and metrics for postcss-position-nib
Gathering detailed insights and metrics for postcss-position-nib
Gathering detailed insights and metrics for postcss-position-nib
Gathering detailed insights and metrics for postcss-position-nib
npm install postcss-position-nib
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
4 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jan 07, 2017
Latest Version
1.0.0
Package Id
postcss-position-nib@1.0.0
Size
26.44 kB
NPM Version
5.0.2
Node Version
7.10.0
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
1
3
PostCSS plugin to shorthand position rules like nib does.
1.shorthand { 2 relative: 0; 3 absolute: 0; 4 fixed: 0; 5} 6 7.full { 8 relative: top right bottom left; 9 absolute: top right bottom left; 10 fixed: top right bottom left; 11} 12 13.oneDirection { 14 absolute: top; 15} 16.oneDirectionPush { 17 absolute: top 10px; 18} 19 20.twoDirection { 21 absolute: top right; 22} 23.twoDirectionPush { 24 absolute: top -10px right -50px; 25} 26 27.threeDirection { 28 fixed: bottom right top; 29} 30.threeDirectionPush { 31 fixed: bottom 10px right 10px top 10px; 32}
1.shorthand { 2 position: relative; 3 position: absolute; 4 position: fixed; 5} 6 7.full { 8 position: relative; 9 top: 0; 10 right: 0; 11 bottom: 0; 12 left: 0; 13 position: absolute; 14 top: 0; 15 right: 0; 16 bottom: 0; 17 left: 0; 18 position: fixed; 19 top: 0; 20 right: 0; 21 bottom: 0; 22 left: 0; 23} 24 25.oneDirection { 26 position: absolute; 27 top: 0; 28} 29.oneDirectionPush { 30 position: absolute; 31 top: 10px; 32} 33 34.twoDirection { 35 position: absolute; 36 top: 0; 37 right: 0; 38} 39.twoDirectionPush { 40 position: absolute; 41 top: -10px; 42 right: -50px; 43} 44 45.threeDirection { 46 position: fixed; 47 bottom: 0; 48 right: 0; 49 top: 0; 50} 51.threeDirectionPush { 52 position: fixed; 53 bottom: 10px; 54 right: 10px; 55 top: 10px; 56}
1postcss([ require('postcss-position-nib') ])
See PostCSS docs for examples for your environment.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/4 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
73 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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