Skip to content

Instantly share code, notes, and snippets.

@samthurman
samthurman / SassMeister-input.scss
Last active August 29, 2015 14:22
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
.person {
background: deepPink;
.person__face {
background: green;
@samthurman
samthurman / SassMeister-input.scss
Created October 7, 2015 14:17
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
//
// Mixins
// --------------------------------------------------
// Generate Breakpoint Prefixes
// -------------------------
@samthurman
samthurman / Custom-Button-Colors-in-Solid.scss
Last active December 8, 2016 18:59
Extending Buttons W/ Solid
// Custom Button Boilerplate
// -------------------------
// all the css you would need to
// add a purple button to your app
// w/ Solid
.button--purple {
@include button-style(violet, $text-white, violet, $text-white);
}

#Onboarding (amy)

  • welcome to buzzfeed doc

##Tech Organization (luke)

  • staffing
  • learning and professional development

#Teams

Compiling Solid With Grunt Sass

Grunt-sass uses libsass to compile your sass. Use includePaths to make solid available as an scss import.

  sass: {
    dist: {
      options: {
        includePaths: 'node_modules/bf-solid/_lib'
 },