
Research
/Security News
Malicious Chrome Extension Performs Hidden Affiliate Hijacking
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.
A unique Flexbox grid system for SCSS and Stylus that allows you to create horizontal or vertical Flexbox grids on-the-fly.
block(1/4) would create blocks that are 1/4 the size of their container with a gutter between them)block(1/4) works the same if it's a top level element or nested)@import FlexGrid at the top of your stylesheet.FlexGrid operates with one primary mixin: box(). box() accepts a few arguments, but the main 3 you need to worry about are $ratio (fraction), $dir (direction), and $flex.
The markup for each box is box > wrap > items. Here's an example that will make the figure elements 1/3 of their container.
<section>
<div>
<figure>...</figure>
<figure>...</figure>
<figure>...</figure>
</div>
</section>
section
box(1/3)
Now let's make those elements display vertically instead of horizontally.
section
box(1/3, $dir: column)
By default FlexGrid displays elements in a traditional grid. This means elements won't expand to fill their container. To change this behavior, simply pass flex to the $flex parameter.
section
box(1/3, $dir: column, $flex: flex)
$flex can also be configured to create CSS masonry easily.
section
box(1/3, $dir: column, $flex: masonry)
If you're using the default grid, elements will stack to the side of (or below) other elements when you run out of room on a row (or column). Sometimes this creates a scrollbar that will offset grids aligned to this grid. To add a placeholder scrollbar and make your grids align again, pass true to $scroll for the grid without a scrollbar.
section
box(1/3, $dir: column, $flex: flex, $scroll: true)
Finally, you may want to have a gutter for a specific grid. Just pass the $gut parameter your gutter size.
section
box(1/3, $dir: column, $flex: flex, $scroll: true, $gut: 60px)
$gutter - The gutter size between grid elements.Note The grid, like Flexbox, takes some getting used to, but once you get the hang of it, it adds a lot of power to Flexbox by letting you size and space things according to a grid you have in mind.
FAQs
A unique Flexbox grid system for SCSS and Stylus.
The npm package flexgrid receives a total of 0 weekly downloads. As such, flexgrid popularity was classified as not popular.
We found that flexgrid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.