Skip to content

Commit 62070e4

Browse files
author
Jon Gold
committed
Add README
1 parent 99eabfe commit 62070e4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# tachyons-js
2+
3+
Use tachyons with your favorite CSS-in-JS composition solution.
4+
5+
Works great with [aphrodite](https://github.com/Khan/aphrodite):
6+
```
7+
import { StyleSheet } from 'aphrodite';
8+
import t from 'tachyons-js';
9+
10+
const styles = StyleSheet.create({
11+
foo: {
12+
...t.ma2,
13+
...t.ma2_ns,
14+
...t.bg_black,
15+
...t.bg_silver_m,
16+
...t.bg_white__l,
17+
},
18+
});
19+
```
20+
21+
WIP, hmu if it breaks.

0 commit comments

Comments
 (0)