UNPKG

402 BSCSSView Raw
1@import 'variables';
2@import 'default-theme';
3
4/** The width/height of the icon element. */
5$md-icon-size: 24px !default;
6
7/**
8This works because we're using ViewEncapsulation.None. If we used the default
9encapsulation, the selector would need to be ":host".
10*/
11md-icon {
12 background-repeat: no-repeat;
13 display: inline-block;
14 fill: currentColor;
15 height: $md-icon-size;
16 width: $md-icon-size;
17}