File size: 529 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
.gridicon,
.stats-icon {
fill: currentColor;
&.needs-offset > use:first-child,
&.needs-offset > g:first-child {
transform: translate(1px, 1px); /* translates to .5px because it's in a child element */
}
&.needs-offset-x > use:first-child,
&.needs-offset-x > g:first-child {
transform: translate(1px, 0); /* only nudges horizontally */
}
&.needs-offset-y > use:first-child,
&.needs-offset-y > g:first-child {
transform: translate(0, 1px); /* only nudges vertically */
}
}
.social-logo {
fill: currentColor;
}
|