
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@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 215 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.