
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
A tiny grid system to work with flexbox-grids build for PostCSS.
Run npm install --save-dev flegrix
then include in your SCSS:
postcss([require("flegrix")]);
If you like to have a visual background-image of the columns
/* global settings */
@flegrix {
debug: true;
}
The default grid has 12 columns with 3% gutter between the columns. By default there is no visual background for grids.
@flegrix grid {
debug: true; /* default: false */
columns: 6; /* default: 12 */
gutter: 2%; /* default: 3% */
debug-bg-alpha: 0.5; /* default: 0.1 */
}
/* setting for grid named 'small' */
@flegrix grid small {
debug: true; /* default: false */
columns: 6; /* default: 12 */
gutter: 2%; /* default: 3% */
debug-bg-alpha: 0.5; /* default: 0.1 */
}
<div class="container">
<!-- 12 column container -->
<div class="info"><h4>12 column container</h4></div> <div class="left">8 columns wide</div>
<div class="right">4 columns wide, start in column 9</div>
</div>
.container {
@flegrix container;
}
.left {
@flegrix col {
from: 1;
to: 8;
}
}
.right {
@flegrix col {
from: 9;
to: 12;
}
}
<div class="container">
<!-- 12 column container -->
<div class="left complex">
<!-- 8 column container -->
<div class="left-A">4 columns wide in a 8 columns container</div>
<div class="left-B">4 columns wide in a 8 columns container</div>
<div class="left-B-push">3 columns wide in a 8 columns container, push 4 columns, append 1 column</div>
</div>
<div class="right">4 columns wide, start in column 9</div>
</div>
.container {
@flegrix container;
}
.left {
@flegrix col {
from: 1;
to: 8;
}
}
.right {
@flegrix col {
from: 9;
to: 12;
}
}
@flegrix grid complex {
columns: 8;
/* you can reference an other grid here */
gutter: "default";
}
.complex {
@flegrix container complex;
}
.left-A {
@flegrix col complex {
from: 1;
to: 4;
}
}
.left-B {
@flegrix col complex {
from: 5;
to: 8;
}
}
.left-B-push {
@flegrix col complex {
from: 5;
to: 7;
push: 4;
append: 1;
}
}
FAQs
tiny grid system for flexbox
The npm package flegrix receives a total of 0 weekly downloads. As such, flegrix popularity was classified as not popular.
We found that flegrix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.