project-booster-vue 9.29.0 → 9.29.1

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": "9.29.0",
3
+ "version": "9.29.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -547,6 +547,7 @@ $text-neutral: (
547
547
  border-color: $color-success-500;
548
548
  border-radius: 0.25rem 0 0 0.25rem;
549
549
  color: $color-success-500;
550
+ margin: 0 !important;
550
551
  padding: 0.375rem;
551
552
  }
552
553
 
@@ -555,6 +556,7 @@ $text-neutral: (
555
556
  border-color: $color-success-500;
556
557
  border-radius: 0 0.25rem 0.25rem 0;
557
558
  color: $color-success-500;
559
+ margin: 0 !important;
558
560
  padding: 0.375rem;
559
561
  }
560
562
  </style>
@@ -449,12 +449,15 @@ $responsive-breakpoint: 'm';
449
449
 
450
450
  &__dialog {
451
451
  &__title {
452
- padding: $mu250 $mu250 0 $mu250;
452
+ h2 {
453
+ @include set-font-face('semi-bold');
454
+ @include set-font-scale('07', 's');
455
+ padding: $mu250 $mu250 0 $mu250;
456
+ }
453
457
  }
454
458
 
455
459
  &__body {
456
460
  padding: 0 $mu250;
457
- @include set-font-scale('05', 'l');
458
461
  }
459
462
 
460
463
  &__footer {
@@ -472,3 +475,12 @@ $responsive-breakpoint: 'm';
472
475
  }
473
476
  }
474
477
  </style>
478
+
479
+ <style lang="scss">
480
+ @import 'pb-variables';
481
+
482
+ .pb-space-input__dialog__body p {
483
+ @include set-font-scale('05', 'm');
484
+ margin: $mu100 0;
485
+ }
486
+ </style>