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

aleut.tools.mixins

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aleut.tools.mixins

aleutcss’ default mixins (based on Harry Roberts inuitcss framework)

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

Mixins

The aleutcss mixins module contains a few framework mixins that are required for using any of the rest of aleutcss.

Create a fully formed type style (sizing and vertical rhythm) by passing in a single value.

Install using npm:

$ npm install --save-dev aleut.tools.mixins

Usage

Basic usage of the mixins in a SCSS-file:

.foo {
	@include font-size(12px);
}

This will generate a rem-based font-size with its pixel fallback, as well as a unitless line-height which will place the element on your baseline, e.g.:

.foo {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 2;
}

If you do not want css to generate you a line-height automatically, you simply pass in your own as a second paramater:

.foo {
	@include font-size(12px, 1.5);
}

This will yield:

.foo {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

This parameter can be any integer, ‘inherit’, or ‘normal’. If you don’t want a line-height at all, pass in a second paramater of ‘none’ or ‘false’:

.foo {
	@include font-size(12px, false);
}

This will yield:

.foo {
	font-size: 12px;
	font-size: 0.75rem;
}

Keywords

FAQs

Package last updated on 10 Mar 2016

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