1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,59 @@ |
1 |
+#offCanvasBasket { |
|
2 |
+ |
|
3 |
+ |
|
4 |
+ .offcanvas--basket-list { |
|
5 |
+ .product--list { |
|
6 |
+ .product { |
|
7 |
+ margin-bottom: 2rem; |
|
8 |
+ padding-bottom: 2rem; |
|
9 |
+ border-bottom: 2px solid var(--bs-primary); |
|
10 |
+ |
|
11 |
+ figure { |
|
12 |
+ margin-bottom: 0px; |
|
13 |
+ } |
|
14 |
+ |
|
15 |
+ .name { |
|
16 |
+ font-weight: $font-weight-bold; |
|
17 |
+ } |
|
18 |
+ |
|
19 |
+ .info { |
|
20 |
+ margin-top: .5rem; |
|
21 |
+ |
|
22 |
+ ul { |
|
23 |
+ display: inline-block; |
|
24 |
+ list-style-type: none; |
|
25 |
+ padding: .5rem; |
|
26 |
+ margin: 0 0 .5rem 0; |
|
27 |
+ background-color: var(--bs-gray-100); |
|
28 |
+ } |
|
29 |
+ } |
|
30 |
+ |
|
31 |
+ .price { |
|
32 |
+ display: flex; |
|
33 |
+ flex-flow: row nowrap; |
|
34 |
+ justify-content: space-between; |
|
35 |
+ align-items: center; |
|
36 |
+ } |
|
37 |
+ } |
|
38 |
+ } |
|
39 |
+ |
|
40 |
+ .subtotal { |
|
41 |
+ font-weight: $font-weight-bold; |
|
42 |
+ text-transform: uppercase; |
|
43 |
+ display: flex; |
|
44 |
+ flex-flow: row nowrap; |
|
45 |
+ justify-content: space-between; |
|
46 |
+ align-items: center; |
|
47 |
+ |
|
48 |
+ .price { |
|
49 |
+ font-size: rfs-value(24px); |
|
50 |
+ font-weight: $font-weight-bold; |
|
51 |
+ } |
|
52 |
+ |
|
53 |
+ & + .row { |
|
54 |
+ display: block; |
|
55 |
+ margin-top: 2rem !important; |
|
56 |
+ } |
|
57 |
+ } |
|
58 |
+ } |
|
59 |
+} |
|
0 | 60 |
\ No newline at end of file |