Files
edx-platform/static/sass/base/_functions.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;
}