1.0.0 • Published 6 years ago

postcss-border-shortcut v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

postcss-border-shortcut Build Status NPM Version Dependency Status

PostCSS plugin for assign default border type if not expressed.

/* Before */

.one {
  border: 1px #E7E7E7;
}

.two {
  border-top: 1px #707C80;
}

.three {
  border-bottom: #423424;
}

/* After */

.one {
  border: 1px solid #E7E7E7;
}

.two {
  border-top: 1px solid #707C80;
}

.three {
  border-bottom: 1px solid #423424;
}

Installation

$ npm install postcss-border-shortcut --save-dev

Usage

JS API

const postcss = require('postcss');
postcss([ require('postcss-border-shortcut') ])

See PostCSS docs for other examples.

Options

borderType

Type: string Default: solid

You can define a default borderstyle property, like: solid, dashed, dotted, double, ect...

// Set in build tool, etc.
.border({
  borderType: 'dashed'
})
1.0.0

6 years ago

0.1.0

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago