vscode-styled-components
vscode-styled-components copied to clipboard
Syntax highlighting for styled-components
Specifying type parameters after `styled.div` seem to break further editor styles, messing up theme colors Note the `const` color before and after type parameters.  It can be...
This PR updates the CSS language service in order to support `@container` queries. C.f. https://github.com/microsoft/vscode-css-languageservice/pull/365 and https://github.com/microsoft/vscode-css-languageservice/pull/371 The PR is ready to be published to npm 😉
**Describe the bug (including copyable syntax)** When writing a styled component with a string template, if you use a template for the identifier (`a`) followed by a pseudo selector (`:after`)...
````javascript import styled from "styled-components"; const rad = `100px`; const Fails = styled.div` border-radius: ${rad} ${rad} ${rad} ${rad}; `; const Succeeds = styled.div` border-radius: ${rad} ${rad} ${rad} 0px; `; const...
**Describe the bug (including copyable syntax)** When using sdk typescript from yarn sdks the autocompletion does not work and when I switch to VScodes version it works. I need to...
I have a problem where every time I'm writing css code( styled component ) in my .jsx, suddenly what I'm writing is replaced by intellissense's suggestion. For example: when I...
**Describe**: Linter disabled When I use nested template literal, for example The suggestion I get from Leitner is as follows : **color : ;** but after i wrote nested template...
**Issue** Issue occurring across multiple themes, multiple versions, for years, finally came to create an issue for it 😅 Syntax Highlighting doesn't work properly when using Generic Typescript types: i.e....
Intellisence not working inside media block of code. Implementation of media looking like screen below:
**Describe the bug (including copyable syntax)** I'm working on a project using typescript and emotion + Next.js. If you write the code as shown in the screenshot, the error `at-rule...