675 B42 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8.icon-size-XS:before {
9 font-size: 80%;
10}
11.icon-size-M:before {
12 font-size: 150%;
13}
14.icon-size-L:before {
15 font-size: 200%;
16}
17
18.codicon-loading {
19 animation: spin infinite;
20}
21@keyframes spin {
22 0% {
23 transform: rotate(0);
24 }
25 100% {
26 transform: rotate(360deg);
27 }
28}
29
30.icon-blue {
31 color: var(--button-primary-background);
32}
33.icon-red {
34 color: var(--signal-bad-bg);
35}
36.icon-yellow {
37 color: var(--signal-medium-bg);
38}
39.icon-green {
40 color: var(--signal-good-bg);
41}
42