Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-resolution-independence

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-resolution-independence

Resolution independence conversion plugin for PostCSS

  • 1.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.3K
increased by3.51%
Maintainers
0
Weekly downloads
 
Created
Source

postcss-resolution-independence

A PostCSS plugin that implements a resolution-independent scalable mechanism.

Example

Input:

.myclass {
	width: 32px;
	height: 48px;
	border: 2apx;
}

Output with default options:

.myclass {
	width: 1.5rem;
	height: 2rem;
	border: 2px;
}

Installation

npm install postcss-resolution-independence

Options

The plugin has no default options. Everything is disabled by default.

  • baseSize Number: The root font-size we wish to use to base all of our conversions upon (default 24).
  • riUnit String: The unit of measurement we wish to use for resolution-independent units (default "rem").
  • unit String: The unit of measurement we wish to convert to resolution-independent units (default "px").
  • absoluteUnit String: The unit of measurement to ignore for resolution-independence conversion, and instead should be 1:1 converted to our unit unit (default "apx").
  • minUnitSize Number: The minimum unit size (as an absolute value) that any measurement should be valued at the lowest device resolution we wish to support. This allows for meaningful measurements that are not unnecessarily scaled down excessively (default 1).
  • minSize Number: The root font-size corresponding to the lowest device resolution we wish to support. This is utilized in conjunction with the minUnitSize property (default 16).
  • precision Number: How precise our measurements will be, namely the maximum amount of fractional digits that will appear in our converted measurements (default 5).

Usage

This plugin can be used like any other PostCSS plugin, by PostCSS CLI, third party tool (like Webpack postcss-loader or Gulp), or directly via javascript APIs. For example:

const postcss = require('postcss');
const riPlugin = require('postcss-resolution-independence');

postcss([riPlugin({baseSize: 16})]).process(source).then(function (result) {
	// do something
});

Unless otherwise specified, all content, including all source code files and documentation files in this repository are:

Copyright (c) 2019-present LG Electronics

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

FAQs

Package last updated on 22 Jul 2024

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc