
Add static instances of FontAwesome, Bootstrap, and theme resources to more fully move to NPM/Browserify package management. Change-Id: I4ceb0cd44f1e54207fde9c6645931e3a29705894
7 lines
202 B
SCSS
7 lines
202 B
SCSS
// Resize anything
|
|
|
|
@mixin resizable($direction) {
|
|
resize: $direction; // Options: horizontal, vertical, both
|
|
overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
|
|
}
|