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

github.com/mikeblum/hugo-now.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sass/vendor/bootstrap/scss/utilities/_sizing.scss')
-rwxr-xr-xsass/vendor/bootstrap/scss/utilities/_sizing.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/sass/vendor/bootstrap/scss/utilities/_sizing.scss b/sass/vendor/bootstrap/scss/utilities/_sizing.scss
new file mode 100755
index 0000000..a7dc3e4
--- /dev/null
+++ b/sass/vendor/bootstrap/scss/utilities/_sizing.scss
@@ -0,0 +1,10 @@
+// Width and height
+
+@each $prop, $abbrev in (width: w, height: h) {
+ @each $size, $length in $sizes {
+ .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
+ }
+}
+
+.mw-100 { max-width: 100% !important; }
+.mh-100 { max-height: 100% !important; }