@transfermarkt/global-styles 1.31.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/bun.lock CHANGED
@@ -4,6 +4,7 @@
4
4
  "": {
5
5
  "name": "@transfermarkt/global-styles",
6
6
  "dependencies": {
7
+ "@transfermarkt/global-styles": "^1.31.0",
7
8
  "postcss": "8.5.6",
8
9
  "postcss-html": "1.8.0",
9
10
  "postcss-scss": "4.0.9",
@@ -129,6 +130,8 @@
129
130
 
130
131
  "@szmarczak/http-timer": ["@szmarczak/http-timer@4.0.6", "", { "dependencies": { "defer-to-connect": "^2.0.0" } }, ""],
131
132
 
133
+ "@transfermarkt/global-styles": ["@transfermarkt/global-styles@1.31.0", "", { "dependencies": { "postcss": "8.5.6", "postcss-html": "1.8.0", "postcss-scss": "4.0.9", "stylelint": "16.24.0", "stylelint-config-standard-scss": "14.0.0", "stylelint-order": "6.0.4", "stylelint-selector-bem-pattern": "4.0.1" }, "peerDependencies": { "sass-map-get-next-prev": "1.0.0" } }, "sha512-RcrhfpPt+numQFE7JYiJQxBW02PE8n2AGciEx+lcG92ATefSp92ZnKbOpMEoybh5UksYdQtsJpoNhhSvSZloEg=="],
134
+
132
135
  "@transfermarkt/prettier-config": ["@transfermarkt/prettier-config@1.3.0", "", { "peerDependencies": { "prettier": "3.0.0", "prettier-plugin-svelte": "3.0.1" } }, "sha512-E9IvloaUQD6qUfNAWg5xr8Fa3Z6JDUdAAUhnaQzn9eIqdbcXw8yDGycrA5pnQGE+HXC6jA21Al8wsZMElpSm2w=="],
133
136
 
134
137
  "@transfermarkt/semantic-release-config": ["@transfermarkt/semantic-release-config@2.1.0", "", { "dependencies": { "@saithodev/semantic-release-gitea": "2.1.0", "conventional-changelog-conventionalcommits": "7.0.2", "semantic-release": "23.0.7" } }, "sha512-KUXZVnC05/Yj425bOfiw5ctZ/lnmeIfaRs+3MCLCLjvkpLJOUTfNr1/zM5255MqmuhgaKu29cG7mF82EnRDOlw=="],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transfermarkt/global-styles",
3
- "version": "1.31.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",
@@ -20,6 +20,7 @@
20
20
  "access": "public"
21
21
  },
22
22
  "dependencies": {
23
+ "@transfermarkt/global-styles": "^1.31.0",
23
24
  "postcss": "8.5.6",
24
25
  "postcss-html": "1.8.0",
25
26
  "postcss-scss": "4.0.9",
@@ -36,7 +36,7 @@
36
36
  &--full-size {
37
37
  display: flex;
38
38
 
39
- @include breakpoint(laptop) {
39
+ @include breakpoint(laptop, max) {
40
40
  width: 100%;
41
41
  }
42
42
  }
@@ -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) {