summaryrefslogtreecommitdiff
path: root/src/components/ProxyGroup.module.css
blob: 748aa67c554acd910078bdbc515bc292213c9cbf (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
.header {
  margin-bottom: 12px;
}

.list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

.proxy {
  margin-right: 5px;
  margin-bottom: 5px;
  @media (--breakpoint-not-small) {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  transition: transform 0.2s ease-in-out;

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