project-booster-vue 10.23.1 → 10.23.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "10.23.1",
3
+ "version": "10.23.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -66,8 +66,6 @@ const product = ref(store.getters['products/getCurrentProduct']);
66
66
  if (!product.value) {
67
67
  product.value = {
68
68
  designation: 'Désignation par défaut',
69
- photo: 'Photo par défaut',
70
- value: 'Valeur par défaut',
71
69
  };
72
70
  }
73
71
 
@@ -34,11 +34,7 @@
34
34
  align-items="center"
35
35
  class="pb-restitution-list__notifications__container"
36
36
  >
37
- <m-notification
38
- :title="notification.title"
39
- :type="notification.type"
40
- class="pb-restitution-list__notifications__container__block"
41
- >
37
+ <m-notification :title="notification.title" :type="notification.type">
42
38
  <default>{{ notification.text }}</default>
43
39
  <footer>
44
40
  <m-link size="m" :href="notification.linkHref" target="_blank">
@@ -626,7 +622,8 @@ $responsive-breakpoint: 'm';
626
622
 
627
623
  &__notifications {
628
624
  width: 100%;
629
- margin-bottom: $mu050;
625
+
626
+ margin-top: $mu100;
630
627
 
631
628
  @include set-from-screen($responsive-breakpoint) {
632
629
  width: 710px;
@@ -639,10 +636,6 @@ $responsive-breakpoint: 'm';
639
636
  @include set-from-screen($responsive-breakpoint) {
640
637
  min-width: 100%;
641
638
  }
642
-
643
- &__block {
644
- margin-bottom: $mu050;
645
- }
646
639
  }
647
640
  }
648
641
  }