Socket
Book a DemoInstallSign in
Socket

postcss-hard-scaling

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-hard-scaling

Hard scaling plugin for PostCSS

2.1.0
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

postcss-hard-scaling

Hard scaling plugin for PostCSS…

So, we have CSS like this:

.Block {
    width: 22ptr;
    height: 22ptc;
    line-height: 22ptf;
    border-radius: 10pt;
}

After plugin postcss-hard-scaling applying:

var postcss = require('gulp-postcss');
var scaling = require('postcss-hard-scaling');

gulp.task('scale', function () {
    return gulp.src('./src/index.css')
        .pipe(postcss([
            scaling({
                layout: 960,
                interface: 1280,
                log: true
            })
        ]))
        .pipe(gulp.dest('./build'));
});

We get:

.Block {
    width: 29px;
    height: 30px;
    line-height: 29px;
    border-radius: 13.3333px
}

Units:

ptr — Will be scaled and rounded to the nearest integer.

ptc — Largest integer less than or equal to a scaled.

ptf — Smallest integer greater than or equal to a scaled.

pt — Just multiplication.

Arguments:

layout — Source size: integer

interface — Destination size: integer

log — Console logging: boolean

Keywords

postcss

FAQs

Package last updated on 19 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.