@transfermarkt/global-styles 1.32.0 → 1.33.0

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": "@transfermarkt/global-styles",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "Shared styles and Global configuration for stylelint rules of the Transfermarkt projects",
5
5
  "author": "Transfermarkt",
6
6
  "license": "MIT",
@@ -262,11 +262,19 @@
262
262
  }
263
263
 
264
264
  &--medium {
265
- font-size: $font-size-medium;
265
+ font-size: ($font-size-medium + rem-calc(2));
266
+
267
+ @include breakpoint(laptop) {
268
+ font-size: $font-size-medium;
269
+ }
266
270
  }
267
271
 
268
272
  &--small {
269
- font-size: $font-size-small;
273
+ font-size: ($font-size-small + rem-calc(2));
274
+
275
+ @include breakpoint(laptop) {
276
+ font-size: $font-size-small;
277
+ }
270
278
  }
271
279
 
272
280
  @media (hover: hover) {