jsketcher/modules/ui/styles/global/icons.less
Val Erastov (xibyte) 0014150207 work on typography
2020-05-21 17:17:06 -07:00

46 lines
No EOL
680 B
Text

.icon-16 svg {
width: 16px;
height: 16px
}
.icon-32 svg {
width: 32px;
height: 32px
}
.icon-48 svg {
width: 48px;
height: 48px
}
.icon-64 svg {
width: 64px;
height: 64px
}
.icon-spin {
-webkit-animation: icon-spin 2s infinite linear;
animation: icon-spin 2s infinite linear;
}
@-webkit-keyframes icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}