Skip to content

Instantly share code, notes, and snippets.

@AdamHjerpe
AdamHjerpe / _position.scss
Last active December 29, 2015 08:48 — forked from imlinus/position.scss
Absolute positioning mixin
@mixin position(
$position: absolute,
$top: null,
$right: null,
$bottom: null,
$left: null
) {
position: $position;
top: $top;
right: $right;