spoko-design-system 1.14.1 → 1.14.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.14.2](https://github.com/polo-blue/sds/compare/v1.14.1...v1.14.2) (2025-12-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **jumbotron:** make description margin conditional per variant ([6c8e59d](https://github.com/polo-blue/sds/commit/6c8e59d813aa512f210503f4ac9facfb3f9b23d6))
|
|
6
|
+
|
|
1
7
|
## [1.14.1](https://github.com/polo-blue/sds/compare/v1.14.0...v1.14.1) (2025-12-07)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -27,12 +27,8 @@ const { title = '', image, description, info, backgroundClass } = Astro.props;
|
|
|
27
27
|
class="font-headlight text-3xl sm:text-4xl md:text-5xl xl:text-6xl mt-1 line-clamp-3 leading-tight"
|
|
28
28
|
set:html={title}
|
|
29
29
|
/>
|
|
30
|
-
{
|
|
31
|
-
|
|
32
|
-
<div class="mb-1 line-clamp-3 text-base sm:text-lg leading-none mt-4" set:html={description} />
|
|
33
|
-
)
|
|
34
|
-
}
|
|
35
|
-
{info && <div class="font-medium mb-4 line-clamp-1 text-base sm:text-lg mt-2" set:html={info} />}
|
|
30
|
+
{description && <div class="jumbotron-description mt-4" set:html={description} />}
|
|
31
|
+
{info && <div class="jumbotron-info" set:html={info} />}
|
|
36
32
|
</header>
|
|
37
33
|
</div>
|
|
38
34
|
</div>
|
|
@@ -65,7 +65,7 @@ const cleanTitle = stripHtml(title);
|
|
|
65
65
|
<div class="jumbotron-split-content">
|
|
66
66
|
<h1 class="jumbotron-split-title" set:html={title} />
|
|
67
67
|
|
|
68
|
-
{description && <p class="jumbotron-description order-3 w-full" set:html={description} />}
|
|
68
|
+
{description && <p class="jumbotron-description order-3 w-full mt-0" set:html={description} />}
|
|
69
69
|
|
|
70
70
|
{
|
|
71
71
|
hasCategories && (
|
|
@@ -47,7 +47,7 @@ export const jumbotronShortcuts = [
|
|
|
47
47
|
['jumbotron-categories', 'order-1 mt-4'],
|
|
48
48
|
|
|
49
49
|
// Content styles
|
|
50
|
-
['jumbotron-description', 'mb-1 line-clamp-3 text-base sm:text-lg leading-
|
|
50
|
+
['jumbotron-description', 'mb-1 line-clamp-3 text-base sm:text-lg leading-tight'],
|
|
51
51
|
['jumbotron-info', 'font-medium mb-4 line-clamp-1 text-base sm:text-lg mt-2'],
|
|
52
52
|
|
|
53
53
|
// Post Split variant
|