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

github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/bootstrap/mixins/_size.scss')
-rw-r--r--assets/css/bootstrap/mixins/_size.scss7
1 files changed, 7 insertions, 0 deletions
diff --git a/assets/css/bootstrap/mixins/_size.scss b/assets/css/bootstrap/mixins/_size.scss
new file mode 100644
index 0000000..69e056d
--- /dev/null
+++ b/assets/css/bootstrap/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");
+}