Skip to content

Instantly share code, notes, and snippets.

@ColemanCollins
ColemanCollins / _responsive-mixins.scss
Created March 15, 2018 17:55
Responsive helper mixins
// =============================================
// Breakpoints
// =============================================
$breakpoint-extra-small: 435px;
$breakpoint-small: 770px;
$breakpoint-large: 992px;
@mixin breakpoint($feature, $value) {
@media only screen and ($feature: $value) {
@ColemanCollins
ColemanCollins / Link.jsx
Created January 16, 2020 22:56
Quick-and-dirty attempt to add arrowheads on links in @mrblenny/react-flow-chart; required redoing the curve generation logic.