stitches
stitches copied to clipboard
[Not Actively Maintained] CSS-in-JS with near-zero runtime, SSR, multi-variant support, and a best-in-class developer experience.
# Bug report ## Describe the bug I'm trying to customize a component that is applying `css()` as `className` and also has the possibility to add a `className` via props,...
# Bug report ## Error with Create React App when stitches is a dependency of a dependency. `Uncaught TypeError: (0 , _react.createStitches) is not a function` This appears in react-scripts...
# Bug report ## Describe the bug Component composition doesn’t work as expected in this trivial example: ``` import { styled } from "@stitches/react"; const A = styled("div", { color:...
**Fixes:** https://github.com/modulz/stitches/issues/979 **Previous behaviour:** ```jsx const StyledButton = styled('button', { color: 'red', }) const Button = (props) => { return React.createElement(StyledButton, props) } const CustomStyledButton = styled(Button, { backgroundColor: 'blue',...
Test stitches with Remix and then write an official guide for it
This is reopened suggestion of #207 The old PR was closed because incompatible with the new codebase, so I've reimplemented it to fit the current codebase. I still think this...
**Is your feature request related to a problem? Please describe.** I always need to add the ms suffix to the number, when using `animationDelay` in my code. Because otherwise it...
# Bug report ## Describe the bug I have a monorepo setup (see below for minimal repro) with the following structure: ``` monorepo/ -- packages --- core --- system ```...
I took the evening to migrate my library from using styled-components to stitches. When I start Storybook, the styles get applied perfectly. However, when I build the library and install...
Showcase how to create styles that map to dynamic values using scoped tokens for cases mentioned here #721 If you have any examples you'd like us to cover please share...