Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/bootstrap/scss/mixins/_size.scss')
-rwxr-xr-xassets/scss/bootstrap/scss/mixins/_size.scss7
1 files changed, 7 insertions, 0 deletions
diff --git a/assets/scss/bootstrap/scss/mixins/_size.scss b/assets/scss/bootstrap/scss/mixins/_size.scss
new file mode 100755
index 0000000..69e056d
--- /dev/null
+++ b/assets/scss/bootstrap/scss/mixins/_size.scss
@@ -0,0 +1,7 @@
+// Sizing shortcuts
+
+@mixin size($width, $height: $width) {
+ width: $width;
+ height: $height;
+ @include deprecate("`size()`", "v4.3.0", "v5");
+}