stijl
stijl copied to clipboard
De Stijl – React CSS Styling
When using components you often want to override their internal styling. Currently it's possible but cumbersome. They main issues I have with our current setup: - On a component instance...
When using an array on the `css` prop to merge styles, I expect the order to be in reverse, like CSS. Expected: ```typescript export const H1: FramerComponent = props =>...
- No `@keyframes`. - No `.active({}))` method. - No `.placeholder({}))` method / styling. --- **Keyframes** for animation. Example: ```javascript const style = Style({ animation: `${rotate} 2s`, }); const rotate =...
TLDR: How do I setup a base component with responsive styling and expand that with more responsive styling in instances of that component? Should there be something like a `.merge`...