You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
447 B
31 lines
447 B
/* Recommended css code for vue-svgicon */
|
|
.svg-icon {
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
color: inherit;
|
|
fill: none;
|
|
stroke: currentColor;
|
|
vertical-align: -0.15em;
|
|
}
|
|
|
|
.svg-fill {
|
|
fill: currentColor;
|
|
stroke: none;
|
|
}
|
|
|
|
.svg-up {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.svg-right {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.svg-down {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.svg-left {
|
|
transform: rotate(-90deg);
|
|
}
|
|
|