16 lines
552 B
CSS
16 lines
552 B
CSS
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
|
|
||
|
@keyframes codicon-spin {
|
||
|
100% {
|
||
|
transform:rotate(360deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.codicon-animation-spin {
|
||
|
/* Use steps to throttle FPS to reduce CPU usage */
|
||
|
animation: codicon-spin 1.5s steps(30) infinite;
|
||
|
}
|