Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
When you just want to use the inline style prop in React.
Uses inline styles where possible, uses dynamic stylesheets for the rest.
import { styled } from 'inlines'
const App = () => {
return (
<styled.div
style={{
border: '10px solid purple',
background: 'yellow',
'@media (min-width: 600px)': {
background: 'hotpink'
},
'@keyframes': {
from: {
opacity: 0
},
to: {
opacity: 1
}
}
}}
>
<div
style={{
marginBottom: 8
}}
>
Just use normal elements when you can
</div>
<styled.input
placeholder="Wow I'm orange"
style={{
border: '1px solid blue',
'&::placeholder': {
color: 'orange'
}
}}
/>
<styled.button
style={{
border: '1px solid red',
'&:hover': {
background: 'yellow'
},
'&:active': {
background: 'red'
}
}}
>
Look I'm a button
</styled.button>
</styled.div>
)
}
export default App
Or use styled as a function if you prefer:
import { styled } from 'inlines'
const Container = styled('div', {
border: '10px solid purple',
background: 'yellow',
'@media (min-width: 600px)': {
background: 'hotpink'
},
'@keyframes': {
from: {
opacity: 0
},
to: {
opacity: 1
}
}
})
const Input = styled('input', {
border: '1px solid blue',
'&::placeholder': {
color: 'orange'
}
})
const Button = styled('button', {
border: '1px solid red',
'&:hover': {
background: 'yellow'
},
'&:active': {
background: 'red'
}
})
const App = () => {
return (
<Container>
<div
style={{
marginBottom: 8
}}
>
Just use normal elements when you can
</div>
<Input placeholder="Wow I'm orange" />
<Button>Look I'm a button</Button>
</Container>
)
}
export default App
FAQs
When you just want to use the style prop in React
The npm package inlines receives a total of 88 weekly downloads. As such, inlines popularity was classified as not popular.
We found that inlines demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.