styled-components-website
styled-components-website copied to clipboard
The styled-components website and documentation
##### Company info **Company name:** **Company website:** **Similar web global rank:** **Link to company logo:** ##### Project info **project name:** **project link:** **project screenshot:**
##### Company info **Company name:** **Company website:** **Similar web global rank:** **Link to company logo:** ##### Project info **project name:** **project link:** **project screenshot:**
According to those two [GitHub](https://github.com/stylelint/stylelint/issues/4481) [issues](https://github.com/styled-components/stylelint-processor-styled-components/issues/278) `stylelint-processor-styled-components` is deprecated as it provokes bugs and stylelint now supports CSS-in-JS out of the box. I think we should update [the documentation section](https://styled-components.com/docs/tooling#stylelint)...
The current FAQ has a section providing webpack configuration: https://styled-components.com/docs/faqs#running-multiple-applications-on-one-page which would not work from webpack v4 (https://webpack.js.org/plugins/split-chunks-plugin/) and requires an update for doc readers. I haven't tasted the following...
https://user-images.githubusercontent.com/72091386/147426832-1e007ef6-cd6d-48f9-a7c0-79a64634ebcf.mov It is kinda annoying for mainly mobile devices. Opening up a PR soon 👀
Can we get an RSS feed for the releases page? My team uses Zapier webhooks to notify our team chat channels when new releases drop for our major/most-loved third-party dependencies...
The documentation [includes examples](https://styled-components.com/docs/api#shouldforwardprop) of the `shouldForwardProp` option which can be passed to withConfig, but it does not mention the other props which are accepted such as `displayName`. Should the...
Here -> https://styled-components.com/docs/advanced#style-objects Same stuff the example could clear up with some tweaks: ``` backgroundColor: 'red', // or 'background-color': 'red', ``` ``` // does stuff like this work? backgroundColor: props...
Greetings! I wanted to suggest a change to the [logo scrolling sections of the index.js](https://github.com/styled-components/styled-components-website/blob/4afb1d11f482c752768228f784bafcdce77035b9/pages/index.js#L215) page. While investigating this tool, I saw the auto-scrolling section for the logos for the...
At the page https://styled-components.com/docs/tooling#namespace we can see that we can use ``` { "plugins": [ ["babel-plugin-styled-components", { "namespace": "my-app" }] ] } ``` but it is not working when ```ssr:...