css-in-js icon indicating copy to clipboard operation
css-in-js copied to clipboard

Autocomplete React Native / JS Styles and converting plain CSS to JS styles

Results 28 css-in-js issues
Sort by recently updated
recently updated
newest added
trafficstars

We can harmlessly support css to js conversion when the current file is **css file** likewise we do when the current file is **js file**.

## Describe what's missing The extension can't be found in Open VSX Registry (but an older deprecated version can).

with extension disabled with extension enabled

#### Expected Behaviour ``` css -> z-index: 1; js -> zIndex: 1, ``` #### Actual Behaviour :- ``` css -> z-index: 1; js -> zIndex: '1', ``` most of the...

Tried converting below cssInJs ``` boxShadow: '0 4px 2.2px -45px rgba(0, 0, 0, 0.039), 0 10.1px 5.3px -45px rgba(0, 0, 0, 0.057), 0 19.1px 10px -45px rgba(0, 0, 0, 0.07),...

When I tried to convert the below camelCase css to kebab-case css, ``` fontSize: '14px', lineHeight: '25px', marginTop: '20px', textAlign: 'center' ``` the result is ``` font-size: 14px; line-height: 25px;...

For my use case i had css with lots of Css Pseudo Classes here is a demo example .titleContainer { display: flex; flex-direction: row; padding: 0 0 0 2rem; }...

For e.g. styled-primitives library based on JSS http://cssinjs.org/styled-jss/ and core JSS and http://cssinjs.org/react-jss I am happy to help where I can.

Hello, I use this plugin with react in vs code. Sadly the suggestions appear the whole document arround. Would it be possible to display autocomplete suggestions only when they usefull?