@statusfy/core
Version:
Core of Statusfy
32 lines (25 loc) • 411 B
CSS
/* recommended css code for vue-svgicon */
.svg-icon {
color: inherit;
vertical-align: middle;
fill: none;
stroke: currentColor;
@apply inline-block w-4 h-4
}
.svg-fill {
fill: currentColor;
stroke: none;
}
.svg-up {
/* default */
transform: rotate(0deg);
}
.svg-right {
transform: rotate(90deg);
}
.svg-down {
transform: rotate(180deg);
}
.svg-left {
transform: rotate(-90deg);
}