@kaizen/components 0.0.0-canary-01-23-mediaqs-20251222225043 → 0.0.0-canary-02-tb-mqs-test-20251223001039

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/dist/styles.css CHANGED
@@ -10580,12 +10580,22 @@
10580
10580
  @container (min-width: 1440px) {
10581
10581
  .TitleBlock-module_breadcrumb__lVNKz {
10582
10582
  display: flex;
10583
+ position: relative;
10584
+ transform: translateY(0);
10585
+ margin-inline: 0 var(--spacing-12);
10586
+ inset-inline-end: auto;
10587
+ inset-inline-start: 0;
10583
10588
  }
10584
10589
  }
10585
10590
  @media (min-width: 1080px) and (max-width: 1439px) {
10586
10591
  @container (min-width: 1065px) {
10587
10592
  .TitleBlock-module_breadcrumb__lVNKz {
10588
10593
  display: flex;
10594
+ position: relative;
10595
+ transform: translateY(0);
10596
+ margin-inline: 0 var(--spacing-12);
10597
+ inset-inline-end: auto;
10598
+ inset-inline-start: 0;
10589
10599
  }
10590
10600
  }
10591
10601
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "0.0.0-canary-01-23-mediaqs-20251222225043",
3
+ "version": "0.0.0-canary-02-tb-mqs-test-20251223001039",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -566,18 +566,22 @@
566
566
 
567
567
  .breadcrumb {
568
568
  @include button-reset;
569
+
569
570
  cursor: pointer;
570
571
  position: absolute;
571
572
  align-items: center;
572
573
  top: 50%;
573
574
  transform: translateY(-50%);
574
575
  text-decoration: none;
576
+
575
577
  @include ca-position($start: calc(-#{$breadcrumb-circle-width} - #{$ca-grid}));
578
+
576
579
  align-self: normal;
577
580
 
578
581
  &:hover .breadcrumbTextLink {
579
582
  text-decoration: underline;
580
583
  }
584
+
581
585
  &:focus {
582
586
  outline: none;
583
587
 
@@ -598,30 +602,24 @@
598
602
  }
599
603
 
600
604
  display: none;
605
+
601
606
  @include title-block-container-1440 {
602
607
  display: flex;
608
+ position: relative;
609
+ transform: translateY(0);
610
+ margin-inline: 0 var(--spacing-12);
611
+
612
+ @include ca-position($start: 0);
603
613
  }
614
+
604
615
  @include title-block-media-mixed-width {
605
616
  display: flex;
606
- }
617
+ position: relative;
618
+ transform: translateY(0);
619
+ margin-inline: 0 var(--spacing-12);
607
620
 
608
- // @include title-block-medium-and-small {
609
- // display: none;
610
- // }
611
-
612
- // @include title-block-media-above-1080-container-under-720 {
613
- // display: none;
614
- // }
615
-
616
- // @media only screen {
617
- // @container (max-width: #{$breadcrumb-breakpoint-width}) {
618
- // position: relative;
619
- // transform: translateY(0);
620
- // margin-inline: 0 var(--spacing-12);
621
-
622
- // @include ca-position($start: 0);
623
- // }
624
- // }
621
+ @include ca-position($start: 0);
622
+ }
625
623
  }
626
624
 
627
625
  @mixin visually-hidden {
@@ -47,6 +47,7 @@
47
47
  @content;
48
48
  }
49
49
  }
50
+
50
51
  @mixin title-block-container-1440 {
51
52
  @container (min-width: 1440px) {
52
53
  @content;
@@ -56,8 +57,7 @@
56
57
  // This emulates a scenario in which the the appchrome is in use and the CP is open
57
58
  @mixin title-block-media-mixed-width {
58
59
  @media (min-width: 1080px) and (max-width: 1439px) {
59
- // diff of 15px undexplained in the container that wraps main/body
60
- // check that the container is less than 1080
60
+ // Note: There is adiff of 15px between the media and container query
61
61
  @container (min-width: 1065px) {
62
62
  @content;
63
63
  }