[SCSS] Fixed typo

Changed tmpBorder mixin to specify '@include' instead of '@iclude'.  This
does not change the output CSS which means the tmpBorder mixin is not
used anywhere and could be removed.
This commit is contained in:
Pete Richards 2015-09-22 10:57:30 -07:00
parent 480da3476e
commit 3e5d294a28

View File

@ -378,7 +378,7 @@
}
@mixin tmpBorder($c: #ffcc00, $a: 0.75) {
@inlude box-sizing(border-box);
@include box-sizing(border-box);
border: 1px dotted rgba($c, $a);
}
@ -402,4 +402,4 @@
@mixin s-stale($a: 0.5) {
color: rgba($colorTelemFresh, $a) !important;
font-style: italic;
}
}