summaryrefslogtreecommitdiff
path: root/src/components/Selection.module.css
blob: c5181cadb399fb5040a05be6950f2a6a2d986dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.root {
  display: flex;
  flex-wrap: wrap;
}

.item {
  flex-grow: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.itemActive {
  border-color: #387cec;
}