1.0.1 • Published 5 years ago

@seedcss/seed-form-group v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

seed-form-group

npm version

Form group component pack for Seed

Install

npm install @seedcss/seed-form-group --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-form-group");

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-form-group as needed in your .scss file:

// Packs
@import "pack/seed-form-group/_index";

Options

The following variables can be found in _config.scss

// Form group :: Config

// Namespace
$seed-form-group-namespace: c-form-group !default;

// Configs
$seed-form-group-margin-bottom: 20px !default;