@bonniernews/dn-design-system-web 8.9.0 → 8.9.1
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,13 @@ All changes to @bonniernews/dn-design-system-web will be documented in this file
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
## [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)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **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))
|
|
13
|
+
|
|
7
14
|
## [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
15
|
|
|
9
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