11 lines
168 B
SCSS
11 lines
168 B
SCSS
// Line-height
|
|
@function lh($amount: 1) {
|
|
@return $body-line-height * $amount;
|
|
}
|
|
|
|
@mixin hide-text(){
|
|
text-indent: -9999px;
|
|
overflow: hidden;
|
|
display: block;
|
|
}
|