summaryrefslogtreecommitdiff
path: root/src/components/rules/RuleProviderItem.module.css
blob: 676a34d8f3b952a7766eb118492e941b146a9f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.RuleProviderItem {
  display: grid;
  grid-template-columns: 40px 1fr 46px;
  height: 100%;
}

.left {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-secondary);
  opacity: 0.4;
}

.middle {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
}

.gray {
  color: #777;
}

.refreshButtonWrapper {
  display: grid;
  place-items: center;
}

.rotate {
  display: inline-flex;
}
.isRotating {
  animation: rotating 3s infinite linear;
  animation-fill-mode: forwards;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}