14 lines
293 B
CSS
14 lines
293 B
CSS
.mask-icon {
|
|
display: inline-block;
|
|
background-color: var(--icon-color, currentColor);
|
|
mask-image: var(--icon);
|
|
mask-size: 100%;
|
|
|
|
height: 1lh;
|
|
width: 1lh;
|
|
transform: translateY(0.3em); /* Looks better when inline */
|
|
.badge & {
|
|
transform: unset;
|
|
}
|
|
}
|