blob: f22b919505e7a2fe07b2fad11a6758621da59c2a (
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
32
33
|
* {
box-sizing: border-box !important;
}
.lists{
overflow: scroll !important;
}
img {
max-width: 15rem !important;
height: auto !important;
padding: .3rem;
}
.lists .list .list-item {
background-color: #B6977D !important;
color: #21201E;
margin: 0.3rem 0;
height: 2.5rem;
border-radius: 8px !important;
}
.lists .list {
background-color: rgba(0, 0, 0, 0.3);
min-height: 2.5rem;
margin: .5rem;
border-radius: 8px !important;
}
.startBasket {
height: 100% !important;
min-height: 2rem;
}
|