@avalanche/object-vertical-spacing

4.0.0-alpha.7 • Public • Published

@avalanche/object-vertical-spacing

Add vertical spacing to all child elements.

Install

npm install @avalanche/object-vertical-spacing --save-dev

Basic usage

// Import the main file.
@import 'node_modules/@avalanche/object-vertical-spacing/scss/index.scss';

Usage with node-sass-magic-importer

Using node-sass (or a plugin for Grunt, gulp or webpack which is using node-sass) in combination with the node-sass-magic-importer custom importer, can make importing CSS dependencies from node_modules a much nicer experience.

// Import the main file.
@import '~@avalanche/object-vertical-spacing';

// Import just the classes you need.
@import '{ .o-vertical-spacing, .o-vertical-spacing--s } from ~@avalanche/object-vertical-spacing';

// Not a fan of the "o-" prefix?
@import '{ .o-vertical-spacing as .vertical-spacing } from ~@avalanche/object-vertical-spacing';

Demo

Default spacing size

<div class="o-vertical-spacing">
  <div>Lorem Ipsum</div>
  <div>Dolor sit amet.</div>
</div>

X-large spacing size

<div class="o-vertical-spacing o-vertical-spacing--xl">
  <div>Lorem Ipsum</div>
  <div>Dolor sit amet.</div>
</div>

Mixins

@import 'node_modules/@avalanche/object-vertical-spacing/scss/mixins';

// Usage.
.vertical-spacing {
  @include o-vertical-spacing();
}

Settings

/// Default spacing size.
/// @type String
$o-vertical-spacing-default-size: m !default;

About

Author

Markus Oberlehner
Website: https://markus.oberlehner.net
Twitter: https://twitter.com/MaOberlehner
PayPal.me: https://paypal.me/maoberlehner

License

MIT

Package Sidebar

Install

npm i @avalanche/object-vertical-spacing

Weekly Downloads

5

Version

4.0.0-alpha.7

License

MIT

Unpacked Size

5.08 kB

Total Files

6

Last publish

Collaborators

  • avalanche
  • maoberlehner