gulp-svg-sprite を使用しています https://github.com/jkphl/gulp-svg-sprite
同じアイコンを異なるサイズで使用することはできますか? スプライトする前は、これは簡単で、実際、SVG について私が最も気に入っていることの 1 つでした。
http://codepen.io/anon/pen/qZQvYN
.icon-small,
.icon-large {
background-image: url(https://lincolnloop.com/static/assets/img/lincolnloop-mark.9b93136b4561.svg);
background-size: 100% 100%;
}
.icon-small {
width: 50px;
height: 50px;
}
.icon-large {
width: 100px;
height: 100px;
}
ただし、スプライトを使用しているため、バックグラウンドサイズはミックスインから取得されるため、このソリューションを使用できません。これを上書きしたとしても、background-position がおかしくなってしまいます。
http://codepen.io/anon/pen/JXezaK
.icon-small,
.icon-large {
background-image: url(https://scotthsmith.com/projects/social-icons/blue/IconGrid.svg?v1.11);
background-size: auto 400px;
border: 1px solid grey;
}
.icon-small {
width: 50px;
height: 50px;
}
.icon-large {
width: 100px;
height: 100px;
}