![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 0 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.