@kaizen/components 0.0.0-canary-04-23-tb-mcqs-20251223032014 → 0.0.0-canary-01-24-tb-mcqs-20251223225141

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
@@ -10267,9 +10267,11 @@
10267
10267
  .TitleBlock-module_avatar__mEjJ8 > * {
10268
10268
  max-width: 100%;
10269
10269
  }
10270
- @container (min-width: 1080px) {
10271
- .TitleBlock-module_avatar__mEjJ8 {
10272
- display: block;
10270
+ @media (min-width: 1080px) and (max-width: 1095px) {
10271
+ @container (min-width: 1065px) {
10272
+ .TitleBlock-module_avatar__mEjJ8 {
10273
+ display: block;
10274
+ }
10273
10275
  }
10274
10276
  }
10275
10277
  .TitleBlock-module_avatar__mEjJ8.TitleBlock-module_withBorder__D8Mz2 {
@@ -10577,7 +10579,7 @@
10577
10579
  border-style: var(--border-focus-ring-border-style, solid);
10578
10580
  inset: calc(-2 * var(--border-focus-ring-border-width, 2px) - var(--border-focus-ring-border-width, 2px));
10579
10581
  }
10580
- @media (min-width: 1080px) {
10582
+ @media (min-width: 1080px) and (max-width: 1095px) {
10581
10583
  @container (min-width: 1065px) {
10582
10584
  .TitleBlock-module_breadcrumb__lVNKz {
10583
10585
  display: flex;
@@ -10589,6 +10591,16 @@
10589
10591
  }
10590
10592
  }
10591
10593
  }
10594
+ @container (min-width: 1080px) {
10595
+ .TitleBlock-module_breadcrumb__lVNKz {
10596
+ display: flex;
10597
+ position: relative;
10598
+ transform: translateY(0);
10599
+ margin-inline: 0 var(--spacing-12);
10600
+ inset-inline-end: auto;
10601
+ inset-inline-start: 0;
10602
+ }
10603
+ }
10592
10604
  .TitleBlock-module_breadcrumbTextLink__ngx82 {
10593
10605
  clip-path: rect(0 0 0 0);
10594
10606
  height: 1px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "0.0.0-canary-04-23-tb-mcqs-20251223032014",
3
+ "version": "0.0.0-canary-01-24-tb-mcqs-20251223225141",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -243,7 +243,7 @@
243
243
  max-width: 100%;
244
244
  }
245
245
 
246
- @container (min-width: #{$layout-breakpoints-large}) {
246
+ @include title-block-media-mixed-width {
247
247
  display: block;
248
248
  }
249
249
 
@@ -607,6 +607,15 @@
607
607
 
608
608
  @include ca-position($start: 0);
609
609
  }
610
+
611
+ @include title-block-min-container-1080 {
612
+ display: flex;
613
+ position: relative;
614
+ transform: translateY(0);
615
+ margin-inline: 0 var(--spacing-12);
616
+
617
+ @include ca-position($start: 0);
618
+ }
610
619
  }
611
620
 
612
621
  @mixin visually-hidden {
@@ -43,13 +43,20 @@
43
43
  }
44
44
 
45
45
  @mixin title-block-min-media-1080 {
46
- @media (min-width: 1080px) {
46
+ @media (min-width: #{$layout-breakpoints-large}) {
47
+ @content;
48
+ }
49
+ }
50
+
51
+ @mixin title-block-min-container-1080 {
52
+ @container (min-width: #{$layout-breakpoints-large}) {
47
53
  @content;
48
54
  }
49
55
  }
50
56
 
51
57
  @mixin title-block-media-mixed-width {
52
- @media (min-width: 1080px) {
58
+ // 1080
59
+ @media (min-width: #{$layout-breakpoints-large}) and (max-width: 1095px) {
53
60
  // Note: There is a diff of 15px between the media and container query
54
61
  // at full width
55
62
  @container (min-width: 1065px) {