@bonniernews/dn-design-system-web 8.9.0 → 8.9.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
|
@@ -4,6 +4,20 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [8.9.2](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@8.9.1...@bonniernews/dn-design-system-web@8.9.2) (2023-12-01)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **web:** typo in style property ([#1131](https://github.com/BonnierNews/dn-design-system/issues/1131)) ([076cde1](https://github.com/BonnierNews/dn-design-system/commit/076cde1328f945b809535d002fb0a9872b1f9bfa))
|
|
13
|
+
|
|
14
|
+
## [8.9.1](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@8.9.0...@bonniernews/dn-design-system-web@8.9.1) (2023-12-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **web:** set width on quiz link box item ([#1130](https://github.com/BonnierNews/dn-design-system/issues/1130)) ([d8893bd](https://github.com/BonnierNews/dn-design-system/commit/d8893bd872db0ca473f4f51cadbb893da8389a48))
|
|
20
|
+
|
|
7
21
|
## [8.9.0](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@8.8.8...@bonniernews/dn-design-system-web@8.9.0) (2023-12-01)
|
|
8
22
|
|
|
9
23
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
] | join(" ") %}
|
|
11
11
|
|
|
12
12
|
<div class="{{ classes }}" {{- attributes | safe }}>
|
|
13
|
-
<div class="{{ componentClassName }}__top ds-light" style="
|
|
13
|
+
<div class="{{ componentClassName }}__top ds-light" style="background-color: {{params.backgroundColor}}">
|
|
14
14
|
<div class="{{ componentClassName }}__top-content">
|
|
15
15
|
<h1 class="{{ componentClassName }}__title">{{ params.title}}</h1>
|
|
16
16
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
display: flex;
|
|
10
10
|
flex-direction: column;
|
|
11
11
|
align-items: center;
|
|
12
|
-
justify-content:
|
|
12
|
+
justify-content: flex-start;
|
|
13
13
|
|
|
14
14
|
&:focus-visible {
|
|
15
15
|
outline: none;
|
|
@@ -39,6 +39,12 @@
|
|
|
39
39
|
font-size: 0;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
&.ds-link-box-item--quiz {
|
|
43
|
+
.ds-link-box-item__media {
|
|
44
|
+
width: 48px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
42
48
|
// Just sample css, replace with actual when design is available
|
|
43
49
|
&.ds-link-box-item--pod {
|
|
44
50
|
.ds-link-box-item__media {
|
|
@@ -17,11 +17,7 @@ $ds-link-box-grid-gap: ds-spacing($ds-s-050);
|
|
|
17
17
|
grid-template-columns: 1fr 1fr;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
@include ds-mq-
|
|
21
|
-
grid-template-columns: 1fr 1fr 1fr;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@include ds-mq-only-breakpoint(desktop) {
|
|
20
|
+
@include ds-mq-smallest-breakpoint(tablet) {
|
|
25
21
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
26
22
|
}
|
|
27
23
|
}
|
package/package.json
CHANGED