
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fluid-content
Advanced tools
📏 React/Vue component to auto scale content proportionally based on the parent width.
npm install fluid-content
import { Fluid } from 'fluid-content/react'
<Fluid base={1000}>
...
</Fluid>
import { Fluid } from 'fluid-content/vue'
<Fluid :base="1000">
...
</Fluid>
You can provide an array of base values to create responsive breakpoints:
import { Fluid } from 'fluid-content/react'
<Fluid base={[400, 800, 1200]}>
...
</Fluid>
The first value takes precedence. So in this case if the parent element is 600px wide, the content will scale using
base = 400. You can flip this behavior by putting the values from high to low ([1200, 800, 400]).
You can also pass Infinity to indicate that the content shouldn't scale after a given breakpoint:
import { Fluid } from 'fluid-content/react'
// Only scale below a parent width of 1200px
<Fluid base={[1200, Infinity]}>
...
</Fluid>
FAQs
Auto scale element content proportionally based on the parent width
We found that fluid-content demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.