1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,65 @@ |
1 |
+@import "basket"; |
|
2 |
+@import "basket-mini"; |
|
3 |
+@import "basket-offcanvas"; |
|
4 |
+ |
|
5 |
+@import "checkout-address"; |
|
6 |
+@import "checkout-overview"; |
|
7 |
+@import "checkout-shipping_payment"; |
|
8 |
+@import "checkout-steps"; |
|
9 |
+ |
|
10 |
+@import "product-box"; |
|
11 |
+@import "product-detail"; |
|
12 |
+@import "product-list"; |
|
13 |
+@import "product-filter"; |
|
14 |
+ |
|
15 |
+@import "messages"; |
|
16 |
+ |
|
17 |
+&.theme-shop { |
|
18 |
+ #container { |
|
19 |
+ background-color: var(--bs-shop-bg); |
|
20 |
+ } |
|
21 |
+} |
|
22 |
+ |
|
23 |
+[class*="mod_iso_"] { |
|
24 |
+ .form-check { |
|
25 |
+ padding: 1rem; |
|
26 |
+ background-color: var(--bs-gray-100); |
|
27 |
+ |
|
28 |
+ &:not(:last-child) { |
|
29 |
+ margin-bottom: 1rem; |
|
30 |
+ } |
|
31 |
+ |
|
32 |
+ .form-check-input { |
|
33 |
+ margin-left: 0px; |
|
34 |
+ margin-right: 0.5rem; |
|
35 |
+ } |
|
36 |
+ } |
|
37 |
+ |
|
38 |
+ .widget-submit { |
|
39 |
+ margin-top: 2rem; |
|
40 |
+ } |
|
41 |
+ |
|
42 |
+ .submit_container { |
|
43 |
+ margin-top: 2rem; |
|
44 |
+ display: flex; |
|
45 |
+ flex-flow: row wrap; |
|
46 |
+ justify-content: space-between; |
|
47 |
+ |
|
48 |
+ input.button { |
|
49 |
+ //@extend .btn; |
|
50 |
+ //@extend .btn-lg; |
|
51 |
+ |
|
52 |
+ &.next { |
|
53 |
+ //@extend .btn-primary; |
|
54 |
+ } |
|
55 |
+ |
|
56 |
+ &.previous { |
|
57 |
+ //@extend .btn-outline-primary; |
|
58 |
+ } |
|
59 |
+ |
|
60 |
+ &.confirm { |
|
61 |
+ //@extend .btn-success; |
|
62 |
+ } |
|
63 |
+ } |
|
64 |
+ } |
|
65 |
+} |