summaryrefslogtreecommitdiff
path: root/src/components/rules/RuleProviderItem.module.scss
blob: 532ec8a279bc8db6f7f4a51791a3bda9569259b1 (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
.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;
  opacity: 0;
  transition: opacity 0.2s;
}

.RuleProviderItem:hover .refreshButtonWrapper {
  opacity: 1;
}