24 lines
431 B
SCSS
24 lines
431 B
SCSS
// ==========================================================================
|
|
// Icons
|
|
// ==========================================================================
|
|
|
|
// Base size icon styles
|
|
.icon {
|
|
fill: currentColor;
|
|
height: $icon-size;
|
|
vertical-align: -3px;
|
|
width: $icon-size;
|
|
}
|
|
|
|
// Within elements
|
|
a svg,
|
|
button svg,
|
|
label svg {
|
|
pointer-events: none;
|
|
}
|
|
|
|
a .icon,
|
|
.btn .icon {
|
|
margin-right: div($spacing-base, 2);
|
|
}
|