the browser-facing portion of osu!
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
2// See the LICENCE file in the repository root for full licence text.
3
4.store-order-item {
5 .default-border-radius();
6 .default-box-shadow();
7 padding: 10px;
8 background-color: @osu-colour-b4;
9 display: grid;
10 gap: 10px;
11 align-items: baseline;
12 grid-template-areas: "name name" "quantity delete" "subtotal subtotal";
13 grid-template-columns: 1fr auto;
14 font-size: @font-size--title-small;
15
16 @media @narrow-up {
17 grid-column: ~"1 / -1";
18 grid-template-areas: "name quantity subtotal delete";
19 grid-template-columns: subgrid;
20 grid-template-rows: auto;
21 }
22
23 @media @desktop {
24 font-size: inherit;
25 }
26
27 &__errors {
28 color: @red;
29 list-style: none;
30 grid-column-start: 1;
31 grid-column-end: -1;
32 order: 10;
33 }
34
35 &__delete {
36 grid-area: delete;
37 text-align: right;
38 }
39
40 &__quantity {
41 grid-area: quantity;
42 }
43
44 &__name {
45 grid-area: name;
46 }
47
48 &__subtext {
49 color: hsl(var(--hsl-c2));
50 font-size: 80%;
51 }
52
53 &__subtotal {
54 grid-area: subtotal;
55
56 @media @desktop {
57 text-align: right;
58 }
59 }
60}