blob: 5830f8360f39643e714e9bbe201c6389a56f935d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.product {
padding: 8px;
background-color: var(--bg-alt);
margin-bottom: 8px;
border-radius: 8px;
display: flex;
gap: 8px;
align-items: center;
}
.product img { height: 70px; }
.product input[type=number]::-webkit-inner-spin-button { opacity: 1; }
.product .name { width: 100%; }
|