Gerillass
v2.1.0Type: Function
remify();
Converts a pixel length to rem, against a 16px root.
Arguments
| Name | Type | Description |
|---|---|---|
$value | number (with unit) | Accepts a pixel length. |
Examples
Pixel sizes emitted as rem.
.title {
font-size: remify(30px);
margin-bottom: remify(12px);
}.title {
font-size: 1.875rem;
margin-bottom: 0.75rem;
}