css-functions
css-functions copied to clipboard
JavaScript utility functions for CSSinJS to build CSS functions.
If we start adding TypeScript anywhere, this is probably the best place to start, to type the utility functions. We can worry about typing the CSS property names (like TypeStyle)...
- [ ] attr() - [x] blur() - [x] brightness() - [ ] calc() - [ ] circle() - [x] contrast() - [ ] counter() - [ ] counters() -...
🚨 You need to enable Continuous Integration on all branches of this repository. 🚨 To enable Greenkeeper, you need to make sure that a [commit status](https://help.github.com/articles/about-statuses/) is reported on all...
For e.g. `ease-in-out` Example with JSS: ``` import {easeInOut} from 'css-functions' const styles = { container: { transition: { duration: 0.5, timingFunction: easeInOUt, } } } ```
Anything I need to consider?
Due to the huge boilerplate of babel and the fact that every tiny function is in a separate file the result is quite owful, we got 18Kb of code where...