@seedcss/seed-overflow

1.0.1 • Public • Published

seed-overflow

npm version

Overflow utility pack for Seed

Install

npm install @seedcss/seed-overflow --save

Documentation

Check out our documentation of this pack.

Basic Usage

SCSS

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

const gulp = require("gulp");
const sass = require("gulp-sass");
const pathfinder = require("sass-pathfinder");
const pack = require("@seedcss/seed-overflow");

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

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

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

Options

The following variables can be found in _config.scss

// Overflow :: Config

// Namespaces
$seed-overflow-namespace: "u-overflow" !default;
$seed-overflow-x-namespace: "u-overflow-x" !default;
$seed-overflow-y-namespace: "u-overflow-y" !default;

// Overflow
$seed-overflow: (
  visible: visible,
  hidden: hidden,
  scroll: scroll,
  auto: auto
) !default;

$seed-overflow-x: (
  visible: visible,
  hidden: hidden,
  scroll: scroll,
  auto: auto
) !default;

$seed-overflow-y: (
  visible: visible,
  hidden: hidden,
  scroll: scroll,
  auto: auto
) !default;

Package Sidebar

Install

npm i @seedcss/seed-overflow

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

13.4 kB

Total Files

13

Last publish

Collaborators

  • helpscout
  • mecarter