v5: Drop deprecated size mixin (#28460)

This commit is contained in:
Mark Otto 2019-03-12 01:02:17 -07:00 committed by XhmikosR
parent 89d7384944
commit d6501970ad
2 changed files with 0 additions and 8 deletions

View File

@ -15,7 +15,6 @@
@import "mixins/badge";
@import "mixins/resize";
@import "mixins/screen-reader";
@import "mixins/size";
@import "mixins/reset-text";
@import "mixins/text-emphasis";
@import "mixins/text-hide";

View File

@ -1,7 +0,0 @@
// Sizing shortcuts
@mixin size($width, $height: $width) {
width: $width;
height: $height;
@include deprecate("`size()`", "v4.3.0", "v5");
}