Skip to content

Instantly share code, notes, and snippets.

View jasoncypret's full-sized avatar
🏠
Working from home

Jason Cypret jasoncypret

🏠
Working from home
View GitHub Profile
@jasoncypret
jasoncypret / input.scss
Created August 17, 2022 20:21
Generated by SassMeister.com.
@mixin color-export($colors-list) {
@each $name, $color in $colors-list {
.#{$name} {
background-color: $color;
}
}
}
$opacity_1: .1;
$opacity_2: .2;
@jasoncypret
jasoncypret / README.md
Created June 4, 2018 18:47 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@jasoncypret
jasoncypret / knockout-pretty.html
Last active April 13, 2018 14:42
Knockout Spit ko.data into view...so nice for debugging
<pre data-bind="text: ko.toJSON($data, null, 2)"></pre>