0.0.3 • Published 8 years ago

seed-position v0.0.3

Weekly downloads
63
License
MIT
Repository
github
Last release
8 years ago

seed-position Build Status npm version Dependency Status

Position utility pack for Seed!

Install

npm install seed-position --save

Documentation

Check out our styleguide for documentation of this pack.

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-position');

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

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

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

Options

The following variables can be found in _config.scss

// Namespace
$seed-position-namespace: u-pos !default;

// Positions
$seed-positions: (
  absolute: absolute,
  fixed: fixed,
  inherit: inherit,
  initial: initial,
  relative: relative,
  static: static
) !default