blob: e91972e04db69dd601d9c1db1789d6e5f0ecee0a (
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
|
img {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
#cards {
overflow-x: auto;
flex-wrap: unset;
}
#cards .col {
width: 18rem;
max-width: 18rem;
min-width: 18rem;
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;
}
|