summaryrefslogtreecommitdiff
path: root/src/components/ProxyGroup.module.css
blob: a7cce49ef68da5cc9ec875cd28b1656a390a41a5 (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
.header {
  > h2 {
    margin-top: 0;

    span:nth-child(2) {
      font-size: 12px;
      color: #777;
      font-weight: normal;
      margin: 0 0.3em;
    }
  }
}

.list {
  display: flex;
  flex-wrap: wrap;
}

.proxy {
  max-width: 280px;
  min-width: 150px;
  margin: 10px;
  transition: transform 0.2s ease-in-out;

  &.proxySelectable {
    cursor: pointer;
    &:hover {
      transform: translateY(-2px);
    }
  }
}