@import "px-mixins-design/_tools.mixins.scss";
The following Sass mixins are provided:
### inuit-font-size
Generates rem sized fonts with line height from pixel sizes.
Can take the following parameters:
```
@include inuit-font-size($inuit-font-size, $inuit-line-height: auto);
```
### border-right-left
Swaps horizontal border placement if HTML direction switched to `dir=rtl`.
Can take the following parameters:
```
@include border-right-left($inuit-border-position, $inuit-border-color: inherit, $inuit-border-width: 1px, $inuit-border-style: solid);
```
### font-face
Generates webfont-friendly font families.
Can take the following parameters:
```
@include font-face($font-family, $file-path, $weight: normal, $style: normal);
```