Skip to content

Instantly share code, notes, and snippets.

@jptcnde
jptcnde / .flowconfig
Created April 8, 2017 04:08 — forked from jorilallo/.flowconfig
Flowtype config for Webpack and ES6/7
[ignore]
.*/node_modules/fbjs/.*
.*/node_modules/editions/.*
[include]
[libs]
[options]
# Support webpack's resolve.root
@jptcnde
jptcnde / dabblet.css
Created September 7, 2015 12:19 — forked from csssecrets/dabblet.css
Vertical centering - Flexbox solution
/**
* Vertical centering - Flexbox solution
*/
* { margin: 0 }
body {
display: flex;
min-height: 100vh;
}