aboutsummaryrefslogtreecommitdiff
path: root/scss/utilities
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-04-08 14:01:38 -0700
committerMark Otto <[email protected]>2017-04-08 14:23:47 -0700
commit2f21403a933336f7cb01c86bf3c650490bc658a6 (patch)
tree7f4209c4499dcb096b8c5302e1b1c1916c7f2d71 /scss/utilities
parent11c2c07e260b99d5d685ce4edb97d7b031da4b3a (diff)
downloadbootstrap-2f21403a933336f7cb01c86bf3c650490bc658a6.tar.xz
bootstrap-2f21403a933336f7cb01c86bf3c650490bc658a6.zip
Drop width from sizing utils given .col- classes can do the same thing (follow up to #22376)
Diffstat (limited to 'scss/utilities')
-rw-r--r--scss/utilities/_sizing.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/utilities/_sizing.scss b/scss/utilities/_sizing.scss
index a7dc3e49b..9b4acf226 100644
--- a/scss/utilities/_sizing.scss
+++ b/scss/utilities/_sizing.scss
@@ -1,6 +1,6 @@
// Width and height
-@each $prop, $abbrev in (width: w, height: h) {
+@each $prop, $abbrev in (height: h) {
@each $size, $length in $sizes {
.#{$abbrev}-#{$size} { #{$prop}: $length !important; }
}