@thalassic/themes 0.15.0 → 0.15.2

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": "@thalassic/themes",
3
- "version": "0.15.0",
3
+ "version": "0.15.2",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -2,7 +2,7 @@
2
2
  --tls-stepper-label-color: var(--color-outline);
3
3
  --tls-stepper-background-color: var(--color-surface);
4
4
 
5
- --tls-stepper-content-padding: var(--spacing-4);
5
+ --tls-stepper-content-gap: var(--spacing-4);
6
6
 
7
7
  // Index
8
8
  --tls-stepper-index-size: calc(32px - var(--tls-stepper-index-border-width) * 2);
@@ -19,11 +19,12 @@
19
19
 
20
20
  background: var(--tls-stepper-background-color);
21
21
 
22
- display: block;
22
+ display: flex;
23
+ flex-direction: column;
24
+ gap: var(--tls-stepper-content-gap);
23
25
 
24
- transition:
25
- border-color var(--motion-theme),
26
- background-color var(--motion-theme);
26
+ transition: border-color var(--motion-theme),
27
+ background-color var(--motion-theme);
27
28
 
28
29
  &.tls-stepper--completed {
29
30
  .tls-stepper-content {
@@ -74,9 +75,8 @@
74
75
 
75
76
  color: var(--tls-stepper-label-color);
76
77
 
77
- transition:
78
- color var(--motion-fast),
79
- background-color var(--motion-fast);
78
+ transition: color var(--motion-fast),
79
+ background-color var(--motion-fast);
80
80
 
81
81
  &__index {
82
82
  width: var(--tls-stepper-index-size);
@@ -128,7 +128,7 @@
128
128
 
129
129
  // Content
130
130
  .tls-stepper-content {
131
- padding: var(--tls-stepper-content-padding);
131
+ flex-grow: 1;
132
132
 
133
133
  // Step
134
134
  .tls-step {