@bonniernews/dn-design-system-web 14.3.5 → 14.3.7
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
|
+
## [14.3.7](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@14.3.6...@bonniernews/dn-design-system-web@14.3.7) (2024-03-20)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **web:** correct static color for pictogram ([#1256](https://github.com/BonnierNews/dn-design-system/issues/1256)) ([3862b3d](https://github.com/BonnierNews/dn-design-system/commit/3862b3daf8444881128b351eaaee9604cec0a89f))
|
|
13
|
+
|
|
14
|
+
## [14.3.6](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@14.3.5...@bonniernews/dn-design-system-web@14.3.6) (2024-03-19)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **web:** semibold text on image list item ([#1251](https://github.com/BonnierNews/dn-design-system/issues/1251)) ([e623514](https://github.com/BonnierNews/dn-design-system/commit/e623514d5761e60a4d853737dcc7cada0d7dffce))
|
|
20
|
+
|
|
7
21
|
## [14.3.5](https://github.com/BonnierNews/dn-design-system/compare/@bonniernews/dn-design-system-web@14.3.4...@bonniernews/dn-design-system-web@14.3.5) (2024-03-15)
|
|
8
22
|
|
|
9
23
|
|
|
@@ -130,6 +130,18 @@ $ds-list-item__icon-size: 24px;
|
|
|
130
130
|
|
|
131
131
|
+ .ds-list-item__titles {
|
|
132
132
|
margin-left: ds-spacing($ds-s-100);
|
|
133
|
+
|
|
134
|
+
.ds-list-item__title {
|
|
135
|
+
@include ds-typography($ds-typography-functionalbody02, $fontWeight: $ds-fontweight-semibold);
|
|
136
|
+
|
|
137
|
+
@at-root .ds-force-px#{&} {
|
|
138
|
+
@include ds-typography(
|
|
139
|
+
$ds-typography-functional-body02regular,
|
|
140
|
+
$forcePx: true,
|
|
141
|
+
$fontWeight: $ds-fontweight-semibold
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
133
145
|
}
|
|
134
146
|
}
|
|
135
147
|
|
|
@@ -11,7 +11,7 @@ $ds-pictogram__icon-size--large: 40px;
|
|
|
11
11
|
align-items: center;
|
|
12
12
|
justify-content: center;
|
|
13
13
|
border-radius: 50%;
|
|
14
|
-
background-color: $ds-color-static-red-
|
|
14
|
+
background-color: $ds-color-static-red-100;
|
|
15
15
|
height: ds-px-to-rem($ds-pictogram__size);
|
|
16
16
|
width: ds-px-to-rem($ds-pictogram__size);
|
|
17
17
|
@at-root .ds-force-px#{&} {
|
package/package.json
CHANGED