Skip to content

helpscout/seed-framework

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Seed Framework Build Status npm version dependencies Status

Seed CSS Framework!

JS is powered by Bootstrap.js

Install

npm install seed-framework --save

WIP

This project has evolved like cray! There's lots more that needs to be added.

Todo components

Documentation

You can find most of our documentation here!

Basic Usage

SCSS

This seed pack needs to be imported into your sass pipeline. Below is an example using Gulp:

var gulp = require('gulp');
var sass = require('gulp-sass');
var pack = require('seed-framework');

gulp.task('sass', function () {
  return gulp.src('./sass/**/*.scss')
    .pipe(sass({
      includePaths: pack
    }))
    .pipe(gulp.dest('./css'));
});

Once that is setup, simply @import seed as needed in your .scss file:

// Packs
@import "pack/seed-framework/_index";