blob: 2b5df6556d75d60b36862b39c56d6c3813aa0b2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.product {
padding: 8px;
background-color: #0001;
margin-bottom: 8px;
border-radius: 8px;
display: flex;
}
.product img {
height: 70px;
}
.product input[type=number]::-webkit-inner-spin-button {
opacity: 1;
}
|