Original by vovastepa
Super Fast Spinning Icon For Roblox by vovastepa
Details
Authorvovastepa
LicenseNo License
CategoryRoblox
Created
Updated
Size541 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
pls dont steal
Source code
/* ==UserStyle==
@name Spinning icon for Roblox
@namespace USO Archive
@author vovastepa
@description `Makes roblox icon spinning`
@version 0.4
@license CC-BY-NC-SA-4.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain("roblox.com") {
@keyframes spin {
from {
transform: rotate(0deg)
}
to {
transform: rotate(360deg)
}
}
.icon-logo-r,
.light-theme .icon-logo-r,
.dark-theme .icon-logo-r {
animation: spin 0.1s linear infinite;
}
}