hr-design-system-handlebars 1.1.5 → 1.1.6

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.1.6 (Mon Feb 13 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - BUGFIX: Fixes the layout of standard 100% [#543](https://github.com/mumprod/hr-design-system-handlebars/pull/543) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.1.5 (Fri Feb 10 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1486,6 +1486,12 @@ video {
1486
1486
  .basis-3\/5 {
1487
1487
  flex-basis: 60%;
1488
1488
  }
1489
+ .basis-1\/12 {
1490
+ flex-basis: 8.333333%;
1491
+ }
1492
+ .basis-11\/12 {
1493
+ flex-basis: 91.666667%;
1494
+ }
1489
1495
  .basis-2\/12 {
1490
1496
  flex-basis: 16.666667%;
1491
1497
  }
@@ -2650,7 +2656,7 @@ video {
2650
2656
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
2651
2657
  }
2652
2658
  .counter-reset {
2653
- counter-reset: cnt1676066590169;
2659
+ counter-reset: cnt1676280500011;
2654
2660
  }
2655
2661
  .line-clamp-4 {
2656
2662
  overflow: hidden;
@@ -2884,7 +2890,7 @@ video {
2884
2890
  --tw-ring-color: rgba(255, 255, 255, 0.5);
2885
2891
  }
2886
2892
  .-ordered {
2887
- counter-increment: cnt1676066590169 1;
2893
+ counter-increment: cnt1676280500011 1;
2888
2894
  }
2889
2895
  .-ordered::before {
2890
2896
  position: absolute;
@@ -2900,7 +2906,7 @@ video {
2900
2906
  letter-spacing: .0125em;
2901
2907
  --tw-text-opacity: 1;
2902
2908
  color: rgba(0, 0, 0, var(--tw-text-opacity));
2903
- content: counter(cnt1676066590169);
2909
+ content: counter(cnt1676280500011);
2904
2910
  }
2905
2911
  /*! ****************************/
2906
2912
  /*! text-shadow */
@@ -4135,6 +4141,11 @@ video {
4135
4141
  padding-right: 2.25rem;
4136
4142
  }
4137
4143
 
4144
+ .sm\:px-4 {
4145
+ padding-left: 1rem;
4146
+ padding-right: 1rem;
4147
+ }
4148
+
4138
4149
  .sm\:px-11\.5 {
4139
4150
  padding-left: 2.875rem;
4140
4151
  padding-right: 2.875rem;
@@ -4521,16 +4532,16 @@ video {
4521
4532
  padding-right: 0px;
4522
4533
  }
4523
4534
 
4524
- .md\:px-4 {
4525
- padding-left: 1rem;
4526
- padding-right: 1rem;
4527
- }
4528
-
4529
4535
  .md\:px-5 {
4530
4536
  padding-left: 1.25rem;
4531
4537
  padding-right: 1.25rem;
4532
4538
  }
4533
4539
 
4540
+ .md\:px-4 {
4541
+ padding-left: 1rem;
4542
+ padding-right: 1rem;
4543
+ }
4544
+
4534
4545
  .md\:px-8 {
4535
4546
  padding-left: 2rem;
4536
4547
  padding-right: 2rem;
@@ -15,10 +15,10 @@
15
15
  </figure>
16
16
  {{#if this.displayTeaserBodyAsImageOverlay}}
17
17
  {{#decorator 'components/teaser/components/teaser_image_overlay' _noOverlayInMobileViewports=true _cssClasses=" relative md:absolute w-full bottom-0"}}
18
- <div class="flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
18
+ <div class="basis-1/12 flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
19
19
  {{> components/event/instant_dates}}
20
20
  </div>
21
- {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'py-4 md:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'py-4 md:px-4')}}
21
+ {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-11/12 py-4 sm:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'basis-11/12 py-4 sm:px-4')}}
22
22
  {{/decorator}}
23
23
  {{else}}
24
24
  {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-3/5 w-3/5 md:basis-full md:w-full')}}
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "repository": "https://github.com/szuelch/hr-design-system-handlebars",
9
- "version": "1.1.5",
9
+ "version": "1.1.6",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -15,10 +15,10 @@
15
15
  </figure>
16
16
  {{#if this.displayTeaserBodyAsImageOverlay}}
17
17
  {{#decorator 'components/teaser/components/teaser_image_overlay' _noOverlayInMobileViewports=true _cssClasses=" relative md:absolute w-full bottom-0"}}
18
- <div class="flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
18
+ <div class="basis-1/12 flex flex-col items-center justify-center p-4 border-r border-gray-400 border-dashed">
19
19
  {{> components/event/instant_dates}}
20
20
  </div>
21
- {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'py-4 md:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'py-4 md:px-4')}}
21
+ {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-11/12 py-4 sm:px-4 basis-3/5 w-3/5 md:basis-full md:w-full' 'basis-11/12 py-4 sm:px-4')}}
22
22
  {{/decorator}}
23
23
  {{else}}
24
24
  {{> components/teaser/components/teaser_body _outerCssClasses=(if this.isMobile1to1 'basis-3/5 w-3/5 md:basis-full md:w-full')}}