Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@seedcss/seed-border
Advanced tools
Border theme pack for Seed
npm install @seedcss/seed-border --save
Check out our documentation of this pack.
This seed pack needs to be imported into your sass pipeline. Below is an example using Gulp:
const gulp = require("gulp");
const sass = require("gulp-sass");
const pathfinder = require("sass-pathfinder");
const pack = require("@seedcss/seed-border");
gulp.task("sass", function() {
return gulp
.src("./sass/**/*.scss")
.pipe(
sass({
includePaths: pathfinder(
// Other includePaths...
pack
)
})
)
.pipe(gulp.dest("./css"));
});
Once that is setup, simply @import
seed-border as needed in your .scss
file:
// Packs
@import "pack/seed-border/_index";
The following variables can be found in _config.scss
// Border :: Config
// Namespaces
$seed-border-namespace: "t-bdr" !default;
$seed-border-radius-namespace: "#{$seed-border-namespace}-r" !default;
// Defaults
$seed-border-color: #eee !default;
$seed-border-radius: 3px !default;
$seed-border-size: 1px !default;
$seed-border-style: solid !default;
// Important (Typical convention for utility purposes)
$seed-border-use-important: true !default;
// Directions
$seed-border-directions: (
all: false,
top: "t",
right: "r",
bottom: "b",
left: "l",
none: false,
) !default;
$seed-border-radius-sizes: (
0: 0px,
1: 1px,
2: 2px,
3: 3px,
4: 4px,
circle: 50%,
pill: 9999px,
) !default;
// Base variable
$seed-border: $seed-border-size $seed-border-style $seed-border-color !default;
FAQs
Border theme pack for Seed
The npm package @seedcss/seed-border receives a total of 0 weekly downloads. As such, @seedcss/seed-border popularity was classified as not popular.
We found that @seedcss/seed-border demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.