@shoprenter/sr-styleguide 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/README.md +138 -18
  2. package/dist/demo/src/demo_bootstrap_js.css +26 -26
  3. package/dist/demo/src/demo_bootstrap_js.js +1 -1
  4. package/dist/demo/src/index.html +1 -1
  5. package/dist/stylesheet/sr-styleguide.css +6 -6
  6. package/package.json +4 -5
  7. package/src/components/app-containers/SrModule/SrModule.scss +1 -1
  8. package/src/components/app-containers/SrModule/SrModule.vue +19 -8
  9. package/src/components/app-containers/SrPage/SrPage.vue +19 -16
  10. package/src/components/app-containers/scope.js +12 -0
  11. package/src/components/breadcrumbs/SrBreadcrumbs/SrBreadcrumbs.scss +47 -0
  12. package/src/components/breadcrumbs/SrBreadcrumbs/SrBreadcrumbs.vue +46 -0
  13. package/src/components/breadcrumbs/tests/SrBreadcrumbs.spec.js +109 -0
  14. package/src/components/form/SrFormDivider/SrFormDivider.scss +4 -0
  15. package/src/components/form/SrFormDivider/SrFormDivider.vue +9 -0
  16. package/src/components/form/SrFormRow/SrFormRow.scss +21 -21
  17. package/src/components/form/SrFormRow/SrFormRow.vue +3 -2
  18. package/src/components/inputs/SrCheckbox/SrCheckbox.vue +13 -1
  19. package/src/components/inputs/SrCheckbox/tests/SrCheckbox.spec.js +39 -0
  20. package/src/components/inputs/SrDatePicker/SrDatePicker.vue +4 -1
  21. package/src/components/inputs/SrMultiCheckbox/BaseMultiCheckbox.vue +43 -0
  22. package/src/components/inputs/SrMultiCheckbox/SrMultiCheckbox.vue +10 -55
  23. package/src/components/inputs/SrMultiCheckbox/SrSimpleMultiCheckbox.vue +52 -0
  24. package/src/components/inputs/SrMultiCheckbox/mixin/SrMultiCheckboxMixin.js +26 -0
  25. package/src/components/inputs/SrMultiCheckbox/tests/SrMultiCheckbox.spec.js +49 -43
  26. package/src/components/inputs/SrMultiCheckbox/tests/SrSimpleMultiCheckbox.spec.js +104 -0
  27. package/src/components/inputs/SrRadio/SrRadioGroup.vue +7 -1
  28. package/src/components/inputs/SrRadio/tests/SrRadioGroup.spec.js +38 -0
  29. package/src/components/inputs/SrSelect/SrSelect.vue +8 -1
  30. package/src/components/inputs/SrSwitch/SrSwitch.vue +0 -1
  31. package/src/components/inputs/SrTextarea/SrTextarea.vue +20 -0
  32. package/src/components/layouts/slim/SrSlimHeading/SrSlimHeading.scss +9 -0
  33. package/src/components/layouts/slim/SrSlimHeading/SrSlimHeading.vue +2 -2
  34. package/src/components/layouts/slim/SrSlimLayout/SrSlimLayout.scss +12 -0
  35. package/src/components/layouts/slim/SrSlimLayout/SrSlimLayout.vue +8 -0
  36. package/src/components/layouts/standard/SrStandardLayout/SrStandardLayout.scss +4 -0
  37. package/src/components/layouts/standard/SrStandardLayout/SrStandardLayout.vue +21 -0
  38. package/src/components/pagination/SrPagination/SrPagination.scss +36 -0
  39. package/src/components/tables/SrSimpleTableFilterTd/SrSimpleTableFilterTd.vue +27 -0
  40. package/src/components/tabs/SrTabsItems/SrTabsItems.vue +1 -1
  41. package/src/plugins/component-library/index.js +4 -2
  42. package/src/plugins/component-library/library/SrBreadcrumbs.js +7 -0
  43. package/src/plugins/component-library/library/{SrFormRow.js → SrForm.js} +2 -0
  44. package/src/plugins/component-library/library/SrInputs.js +4 -0
  45. package/src/plugins/component-library/library/SrLayouts.js +4 -0
  46. package/src/plugins/component-library/library/SrPagination.js +1 -1
  47. package/src/plugins/component-library/library/SrTables.js +2 -1
  48. package/src/plugins/vuetify/preset/icons/index.js +4 -0
  49. package/src/plugins/vuetify/preset/locale/sr-en.js +2 -1
  50. package/src/plugins/vuetify/preset/locale/sr-hu.js +2 -1
  51. package/src/plugins/vuetify/preset/style/scss/_admin-menu.scss +0 -14
  52. package/src/plugins/vuetify/preset/style/scss/_components.scss +0 -12
  53. package/src/plugins/vuetify/preset/style/scss/_new-style.scss +0 -7
  54. package/src/plugins/vuetify/preset/style/scss/components/_input.scss +1 -32
  55. package/src/plugins/vuetify/preset/style/scss/components/_select.scss +0 -61
  56. package/src/plugins/vuetify/preset/style/scss/components/_table.scss +5 -39
  57. package/src/plugins/vuetify/preset/variables.scss +2 -2
  58. package/src/plugins/vuetify/preset/style/scss/_layout.scss +0 -140
  59. package/src/plugins/vuetify/preset/style/scss/_pages.scss +0 -5
  60. package/src/plugins/vuetify/preset/style/scss/_utility.scss +0 -14
  61. package/src/plugins/vuetify/preset/style/scss/components/_actionbar.scss +0 -31
  62. package/src/plugins/vuetify/preset/style/scss/components/_block.scss +0 -12
  63. package/src/plugins/vuetify/preset/style/scss/components/_breadcrumb.scss +0 -37
  64. package/src/plugins/vuetify/preset/style/scss/components/_copy-to-clipboard.scss +0 -16
  65. package/src/plugins/vuetify/preset/style/scss/components/_dialog.scss +0 -61
  66. package/src/plugins/vuetify/preset/style/scss/components/_icons.scss +0 -21
  67. package/src/plugins/vuetify/preset/style/scss/components/_pagination.scss +0 -36
  68. package/src/plugins/vuetify/preset/style/scss/components/_quantity-range-input.scss +0 -93
  69. package/src/plugins/vuetify/preset/style/scss/components/_select-all-plus.scss +0 -5
  70. package/src/plugins/vuetify/preset/style/scss/components/_simple-card.scss +0 -97
  71. package/src/plugins/vuetify/preset/style/scss/components/_sticky-header.scss +0 -41
  72. package/src/plugins/vuetify/preset/style/scss/pages/_apps.scss +0 -99
  73. package/src/plugins/vuetify/preset/style/scss/pages/_campaign.scss +0 -30
  74. package/src/plugins/vuetify/preset/style/scss/pages/_order-list.scss +0 -498
  75. package/src/plugins/vuetify/preset/style/scss/pages/_order-preview.scss +0 -83
  76. package/src/plugins/vuetify/preset/style/scss/pages/_product-list.scss +0 -286
  77. /package/src/components/pagination/{SrPagination.vue → SrPagination/SrPagination.vue} +0 -0
@@ -1,498 +0,0 @@
1
- .admin-order-table {
2
- background: transparent !important;
3
- }
4
-
5
- .admin-order-table .v-data-table-header tr,
6
- .admin-order-table__body-row {
7
- display: grid;
8
- }
9
-
10
- .admin-order-table__body {
11
- background: #fff;
12
- }
13
-
14
- .admin-order-table__status-chip {
15
- padding: 0 18px;
16
-
17
- .v-chip__content {
18
- display: inline-grid;
19
- }
20
- }
21
-
22
- .admin-order-table__status-chip-text {
23
- white-space: nowrap;
24
- text-overflow: ellipsis;
25
- overflow: hidden;
26
- display: block;
27
- max-width: 100%;
28
- }
29
-
30
- .admin-order-table__outer-id {
31
- font-weight: 600;
32
- font-size: 10px;
33
- color: var(--sr-secondary-text);
34
- }
35
-
36
- .select-save__select {
37
- @include media-breakpoint-up(xl) {
38
- width: 100%;
39
- max-width: 160px;
40
- }
41
- }
42
-
43
- @include media-breakpoint-up(lg) {
44
- .order-filter-box {
45
- .v-input {
46
- max-width: 140px;
47
- }
48
- }
49
- }
50
-
51
- .order-filter-search {
52
- .v-input {
53
- max-width: 250px;
54
- }
55
- }
56
-
57
- .admin-order-table__shipping-method__container {
58
- width: 100%;
59
- }
60
-
61
- @include media-breakpoint-down(xs) {
62
- .admin-order-table .admin-bulk-actions-table-head tr,
63
- .withInvoice.admin-order-table .admin-bulk-actions-table-head tr {
64
- grid-template-columns: $order-checkbox-grid-width 1fr;
65
- grid-template-areas:
66
- "checkbox order";
67
- }
68
- .admin-order-table__body-row {
69
- grid-template-columns: $order-checkbox-grid-width repeat(2, 1fr);
70
- grid-template-areas:
71
- "checkbox order total"
72
- "checkbox date payment"
73
- "checkbox customer shipping"
74
- "checkbox status actions";
75
- }
76
-
77
- .withInvoice .admin-order-table__body-row {
78
- grid-template-columns: $order-checkbox-grid-width repeat(2, 1fr);
79
- grid-template-areas:
80
- "checkbox order total"
81
- "checkbox date payment"
82
- "checkbox customer shipping"
83
- "checkbox status invoice"
84
- "checkbox status actions";
85
- }
86
-
87
- .admin-order-table__invoice,
88
- .admin-order-table__payment-method,
89
- .admin-order-table__shipping-method {
90
- justify-content: flex-end !important;
91
- text-align: right;
92
- }
93
-
94
- .admin-order-table .v-data-table-header > tr > th {
95
- border-top: 0;
96
- }
97
-
98
- .admin-order-table .v-data-table-header > tr > th:nth-child(2) {
99
- border-right: 0;
100
- }
101
-
102
- .admin-order-table .v-data-table-header > tr > th:nth-child(n+3) {
103
- display: none;
104
- }
105
-
106
- .admin-order-table__order-id,
107
- .admin-order-table__order-total {
108
- padding-bottom: 0;
109
- }
110
-
111
- .admin-order-table__order-total {
112
- font-weight: 800;
113
- font-size: 14px !important;
114
- }
115
-
116
- .admin-order-table__body-row > td {
117
- border-top: 0 !important;
118
- }
119
-
120
- .admin-bulk-actions-table-head th.admin-order-table__head-bulk-checkbox {
121
- border-right: 0 !important;
122
- }
123
-
124
- .admin-order-table__customer,
125
- .admin-order-table__status,
126
- .admin-order-table__order-id,
127
- .admin-order-table__checkbox,
128
- .admin-order-table__date-added {
129
- border-right: 0 !important;
130
- }
131
-
132
- .admin-order-table__date-added,
133
- .admin-order-table__customer,
134
- .admin-order-table__shipping-method,
135
- .admin-order-table__payment-method {
136
- padding-top: 0;
137
- padding-bottom: 0;
138
- }
139
- .admin-order-table__status,
140
- .admin-order-table__invoice {
141
- padding-top: 0;
142
- padding-bottom: 8px;
143
- }
144
-
145
- .admin-order-table__head-formattedTotal,
146
- .admin-data-table__actions,
147
- .admin-order-table__head-shippingMethod,
148
- .admin-order-table__head-paymentMethod,
149
- .admin-order-table__head-action,
150
- .orderlist-customer__email {
151
- display: none !important;
152
- }
153
-
154
- td.admin-order-table__status {
155
- .select-save__select {
156
- border: 1px solid #cccccc;
157
- padding-top: 4px;
158
- padding-bottom: 4px;
159
- }
160
- }
161
-
162
- .admin-order-table__customer span,
163
- .admin-order-table__customer a,
164
- .admin-order-table__shipping-method span,
165
- .admin-order-table__payment-method span {
166
- display: block;
167
- max-height: 34px;
168
- overflow: hidden;
169
- }
170
-
171
- .admin-order-table__customer span.admin-order-table__customer-link {
172
- display: flex;
173
- span.v-icon {
174
- overflow: unset;
175
- }
176
-
177
- .sr-admin-line-clamp {
178
- display: block;
179
- display: -webkit-box;
180
- overflow: hidden;
181
- text-overflow: ellipsis;
182
- max-height: 100%;
183
- word-break: break-word;
184
- -webkit-box-orient: vertical;
185
- }
186
- }
187
-
188
- .admin-order-table__invoice,
189
- .admin-order-table__shipping-method,
190
- .admin-order-table__order-total,
191
- .admin-order-table__payment-method,
192
- .admin-order-table__customer {
193
- border-bottom: 0;
194
- }
195
- }
196
-
197
- @include media-breakpoint-only(sm) {
198
-
199
- .order-list-reset-filter-button {
200
- grid-column-end: span 2;
201
- max-width: 50% !important;
202
- justify-self: center;
203
- }
204
-
205
- .admin-order-table__status {
206
- border-top: 0;
207
- }
208
-
209
- .admin-order-table__customer {
210
- padding-bottom: 0;
211
- }
212
-
213
- .admin-order-table .admin-bulk-actions-table-head tr,
214
- .admin-order-table__body-row {
215
- grid-template-columns: $order-checkbox-grid-width 150px repeat(2, minmax(10%, 1fr)) 100px 62px;
216
- grid-template-areas:
217
- "checkbox order shipping payment total actions"
218
- "checkbox date shipping payment total actions"
219
- "checkbox customer shipping payment total actions"
220
- "checkbox status shipping payment total actions";
221
- }
222
-
223
- .withInvoice.admin-order-table .admin-bulk-actions-table-head tr {
224
- grid-template-columns: $order-checkbox-grid-width 150px repeat(2, minmax(10%, 1fr)) 80px 62px;
225
- grid-template-areas:
226
- "checkbox order shipping payment invoice total actions"
227
- "checkbox date shipping payment invoice total actions"
228
- "checkbox customer shipping payment invoice total actions"
229
- "checkbox status shipping payment invoice total actions";
230
- }
231
-
232
- .withInvoice .admin-order-table__body-row {
233
- grid-template-columns: $order-checkbox-grid-width 150px repeat(2, minmax(10%, 1fr)) 80px 62px;
234
- grid-template-areas:
235
- "checkbox order shipping payment total actions"
236
- "checkbox date shipping payment total actions"
237
- "checkbox customer shipping payment total actions"
238
- "checkbox status shipping invoice total actions";
239
- }
240
-
241
- .admin-order-table .v-data-table-header > tr > th:nth-child(3),
242
- .admin-order-table .v-data-table-header > tr > th:nth-child(6),
243
- .admin-order-table .v-data-table-header > tr > th:nth-child(7) {
244
- display: none;
245
- }
246
-
247
- .admin-order-table__body-row td.admin-order-table__payment-method {
248
- border-bottom: 0;
249
- }
250
-
251
- td.admin-order-table__shipping-method span {
252
- display: block;
253
- word-break: break-word;
254
- }
255
-
256
- .admin-order-table__body-row td.admin-order-table__invoice {
257
- border-top: 0;
258
- align-items: flex-start;
259
- justify-content: flex-start;
260
- }
261
-
262
- .orderlist-customer__email {
263
- display: none;
264
- }
265
- }
266
-
267
- @include media-breakpoint-between(sm, md) {
268
- .admin-order-table__date-added,
269
- .admin-order-table__customer {
270
- border-top: 0;
271
- padding-top: 0;
272
- }
273
-
274
- .admin-order-table__date-added,
275
- .admin-order-table__order-id {
276
- padding-bottom: 0;
277
- }
278
- }
279
-
280
- @include media-breakpoint-down(md) {
281
- .admin-order-table__head-name,
282
- .admin-order-table__head-dateAdded,
283
- .admin-order-table__body-row .admin-order-table__customer .admin-order-table__customer-email {
284
- display: none !important;
285
- }
286
-
287
- .admin-order-table__date-added,
288
- .admin-order-table__order-id {
289
- border-bottom: 0;
290
- }
291
-
292
- .admin-order-table__order-link {
293
- font-weight: 800;
294
- }
295
- }
296
-
297
- @include media-breakpoint-down(sm) {
298
- .admin-order-table__head-status,
299
- .admin-order-table__head-invoiceData {
300
- display: none !important;
301
- }
302
-
303
- .order-filter-search .v-text-field__slot {
304
- width: 100%;
305
- }
306
- }
307
-
308
- @include media-breakpoint-only(md) {
309
- .admin-order-table tr.admin-order-table__head-row:not(.bulk-action) {
310
- grid-template-columns: $order-checkbox-grid-width 150px repeat(3, minmax(10%, 1fr)) 100px 62px;
311
- grid-template-areas:
312
- "checkbox order status shipping payment total actions";
313
- }
314
-
315
- .admin-order-table__body-row {
316
- grid-template-columns: $order-checkbox-grid-width 150px repeat(3, minmax(10%, 1fr)) 100px 62px;
317
- grid-template-areas:
318
- "checkbox order status shipping payment total actions"
319
- "checkbox date status shipping payment total actions"
320
- "checkbox customer status shipping payment total actions";
321
- }
322
-
323
- .withInvoice.admin-order-table .admin-bulk-actions-table-head tr:not(.bulk-action) {
324
- grid-template-columns: $order-checkbox-grid-width 150px repeat(3, minmax(10%, 1fr)) 60px 100px 62px;
325
- grid-template-areas:
326
- "checkbox order status shipping payment invoice total actions";
327
- }
328
-
329
- .withInvoice .admin-order-table__body-row {
330
- grid-template-columns: $order-checkbox-grid-width 150px repeat(3, minmax(10%, 1fr)) 60px 100px 62px;
331
- grid-template-areas:
332
- "checkbox order status shipping payment invoice total actions"
333
- "checkbox date status shipping payment invoice total actions"
334
- "checkbox customer status shipping payment invoice total actions";
335
- }
336
-
337
- .admin-order-table .v-data-table-header > tr > th:nth-child(3),
338
- .admin-order-table .v-data-table-header > tr > th:nth-child(7) {
339
- display: none;
340
- }
341
- }
342
-
343
- @include media-breakpoint-up(lg) {
344
- .admin-bulk-actions-table-head tr,
345
- .admin-order-table__body-row {
346
- grid-template-columns: $order-checkbox-grid-width 105px repeat(5, 1fr) 105px 62px;
347
- grid-template-areas: "checkbox order customer status shipping payment date total actions";
348
- }
349
-
350
- .withInvoice.admin-order-table .admin-bulk-actions-table-head tr,
351
- .withInvoice .admin-order-table__body-row {
352
- grid-template-columns: $order-checkbox-grid-width 105px repeat(5, 1fr) 60px 105px 62px;
353
- grid-template-areas: "checkbox order customer status shipping payment date invoice total actions";
354
- }
355
- }
356
-
357
- .admin-order-table .admin-bulk-actions-table-head tr.bulk-action,
358
- .withInvoice.admin-order-table .admin-bulk-actions-table-head tr.bulk-action {
359
- display: grid;
360
- grid-template-columns: $order-checkbox-grid-width 1fr;
361
- grid-template-areas: "checkbox bulk";
362
- }
363
-
364
- .admin-order-table__order-link {
365
- font-size: 14px;
366
- font-weight: 700;
367
- }
368
-
369
- .admin-order-table__actions-btn {
370
- .v-icon.v-icon {
371
- width: 20px !important;
372
- height: 20px !important;
373
- }
374
- }
375
-
376
- .admin-order-table tr.admin-order-table__head-row {
377
- display: grid;
378
- }
379
-
380
- .admin-order-table .v-data-table-header th {
381
- width: auto !important;
382
- min-width: auto !important;
383
- }
384
-
385
- .orderlist-customer__email,
386
- .admin-order-table__body-row td {
387
- overflow-wrap: break-word;
388
- }
389
-
390
- .admin-order-table__body-row td {
391
- display: flex;
392
- flex-wrap: wrap;
393
- align-items: center;
394
- }
395
-
396
- .admin-order-table__bulk-checkbox {
397
- grid-area: checkbox;
398
- }
399
-
400
- .admin-order-table__bulk-actions {
401
- grid-area: bulk;
402
- }
403
-
404
- .admin-order-table .v-data-table-header > tr > th:nth-child(1),
405
- .admin-order-table__checkbox {
406
- grid-area: checkbox;
407
- }
408
-
409
- .admin-order-table .v-data-table-header > tr > th:nth-child(2),
410
- .admin-order-table__order-id {
411
- grid-area: order;
412
- }
413
-
414
- .admin-order-table .v-data-table-header > tr > th:nth-child(3),
415
- .admin-order-table__customer {
416
- grid-area: customer;
417
- }
418
-
419
- .admin-order-table .v-data-table-header > tr > th:nth-child(4),
420
- .admin-order-table__status {
421
- grid-area: status;
422
- }
423
-
424
- .admin-order-table .v-data-table-header > tr > th:nth-child(5),
425
- .admin-order-table__shipping-method {
426
- grid-area: shipping;
427
- }
428
-
429
- .admin-order-table .v-data-table-header > tr > th:nth-child(6),
430
- .admin-order-table__payment-method {
431
- grid-area: payment;
432
- }
433
-
434
- .admin-order-table .v-data-table-header > tr > th:nth-child(7),
435
- .admin-order-table__date-added {
436
- grid-area: date;
437
- }
438
-
439
- .admin-order-table .v-data-table-header > tr > th:nth-child(8),
440
- .admin-order-table__invoice {
441
- grid-area: invoice;
442
- justify-content: center;
443
- }
444
-
445
- .admin-order-table .v-data-table-header > tr > th:nth-child(8),
446
- .admin-order-table__order-total {
447
- grid-area: total;
448
- }
449
-
450
- .admin-order-table .v-data-table-header > tr > th:nth-child(9),
451
- .admin-order-table__order-actions {
452
- grid-area: actions;
453
- }
454
-
455
- .admin-order-table__head-formattedTotal,
456
- .admin-order-table__order-total {
457
- justify-content: flex-end;
458
- text-align: right;
459
- }
460
-
461
- .order-list-reset-filter-button {
462
- height: 40px !important;
463
- width: 100%;
464
- max-width: 100%;
465
-
466
- @include media-breakpoint-up(md) {
467
- width: auto;
468
- height: 30px !important;
469
- }
470
- }
471
-
472
- .filter-second-part {
473
- & > div {
474
-
475
- @include media-breakpoint-up(lg) {
476
- max-width: 195px;
477
- }
478
-
479
- @include media-breakpoint-up(sm) {
480
- margin: 0 3px;
481
- }
482
- }
483
- }
484
-
485
- @include media-breakpoint-down(sm) {
486
- .filter-second-part {
487
- display: grid;
488
- grid-template-columns: repeat(2, 1fr);
489
- grid-row-gap: 12px;
490
- grid-column-gap: 12px;
491
- }
492
- }
493
-
494
- @include media-breakpoint-down(xs) {
495
- .filter-second-part {
496
- grid-template-columns: repeat(1, 1fr);
497
- }
498
- }
@@ -1,83 +0,0 @@
1
- .order-preview__content {
2
- padding: 20px 30px;
3
- position: relative;
4
- }
5
-
6
- .order-preview-close {
7
- position: absolute;
8
- top: 15px;
9
- right: 15px;
10
- }
11
-
12
- .order-preview__status-select {
13
- max-width: 220px !important;
14
- }
15
-
16
- .order-preview__addresses,
17
- .order-preview__customer {
18
- line-height: 21px;
19
- }
20
-
21
- .order-preview__outer-id {
22
- font-size: 18px;
23
- font-weight: 300;
24
- }
25
-
26
- .order-preview__product-list {
27
- display: flex;
28
- width: 100%;
29
-
30
- & > div {
31
- padding-top: 8px;
32
- padding-bottom: 8px;
33
- }
34
- }
35
-
36
- .order-preview__product-list-quantity {
37
- flex: 0 0 60px;
38
- }
39
-
40
- .order-preview__product-list-quantity .caption {
41
- text-overflow: ellipsis;
42
- overflow: hidden;
43
- white-space: nowrap;
44
- max-width: 60px;
45
- }
46
-
47
- .order-preview__product-list-product {
48
- flex: 1 1 auto;
49
- }
50
-
51
- .order-preview__product-list-price {
52
- flex: 1 1 100px;
53
- text-align: right;
54
- }
55
-
56
- .order-preview__product-list + .order-preview__product-list {
57
- .order-preview__product-list-product {
58
- border-top: 1px solid #EEEEEE;
59
- }
60
-
61
- .order-preview__product-list-price {
62
- border-top: 1px solid #EEEEEE;
63
- }
64
- }
65
-
66
- .order-preview__summary {
67
- background: var(--sr-light-grey);
68
- margin-top: 20px;
69
- margin-bottom: 20px;
70
- padding: 15px 25px;
71
- margin-left: -30px;
72
- margin-right: -30px;
73
- font-size: 14px;
74
-
75
- .row + .row {
76
- margin-top: 10px;
77
- }
78
-
79
- .row:last-child {
80
- font-weight: bold;
81
- font-size: 15px;
82
- }
83
- }