aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/index.css
blob: 818c7344b4bf0a42ddafd6311de0c1a3a91fb216 (plain) (blame)
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
img {
  -webkit-user-select: none;
          user-select: none;
}

.center {
  position: absolute;
  height: 50%;
  width: 50%;
  top: 50%;
  left: 50%;
  translate-top: -50%;
  translate-left: -50%;
  transform: translate(-50%, -50%);
}

#cards .col {
  overflow-y: auto;
}
#cards .col .card .card-header img {
  cursor: pointer;
}
#cards .col .card .list-group {
  max-height: 33.3vh;
  overflow: auto;
}
#cards .col .card .list-group .list-group-item {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}