Skip to content

Instantly share code, notes, and snippets.

View andrey-skl's full-sized avatar

Andrey Skladchikov andrey-skl

View GitHub Profile
.yt-agile-table__row__cell {
border-color: #232e34;
border-right: 1px solid #232e34;
border-left: 1px solid #232e34;
}
.yt-agile-table .yt-agile-table__row {
border-bottom: 1px solid #232e34;
}
@danharper
danharper / BorderedInput.js
Last active May 16, 2016 20:31
BorderedInput, with Material design style focus animation. Preview: https://i.imgur.com/Fek7rXF.gif
// note there may be a better way to abuse flexbox than this :)
var React = require('react-native')
var { View, TextInput } = React
var BorderedInput = React.createClass({
getInitialState() {
return { i: 0 }
},