Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,48 @@
1
+.mod_iso_orderhistory {
2
+  table {
3
+    @extend .table, .table-striped;
4
+
5
+    td {
6
+      vertical-align: middle;
7
+
8
+      &.link {
9
+        text-align: right;
10
+
11
+        a {
12
+          //@extend .btn-sm;
13
+
14
+          &:first-child {
15
+            //@extend .btn, .btn-primary;
16
+          }
17
+
18
+          &:last-child {
19
+            //@extend .btn, .btn-secondary;
20
+          }
21
+        }
22
+      }
23
+    }
24
+  }
25
+}
26
+
27
+.mod_iso_orderdetails {
28
+  .collection .product {
29
+    .image {
30
+      flex: 100%;
31
+      @include media-breakpoint-up(xl) {
32
+        flex: 0 0 75px;
33
+      }
34
+
35
+      text-align: center;
36
+    }
37
+
38
+    .name {
39
+      @include media-breakpoint-down(xl) {
40
+        flex: 100%;
41
+      }
42
+
43
+      @include media-breakpoint-up(xl) {
44
+        flex-grow: 4;
45
+      }
46
+    }
47
+  }
48
+}
0 49
\ No newline at end of file