
Add static instances of FontAwesome, Bootstrap, and theme resources to more fully move to NPM/Browserify package management. Change-Id: I4ceb0cd44f1e54207fde9c6645931e3a29705894
9 lines
149 B
SCSS
9 lines
149 B
SCSS
// Opacity
|
|
|
|
@mixin opacity($opacity) {
|
|
opacity: $opacity;
|
|
// IE8 filter
|
|
$opacity-ie: ($opacity * 100);
|
|
filter: alpha(opacity=$opacity-ie);
|
|
}
|