@transfermarkt/global-styles 1.32.0 → 1.34.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.34.0",
4
4
  "description": "Shared styles and Global configuration for stylelint rules of the Transfermarkt projects",
5
5
  "author": "Transfermarkt",
6
6
  "license": "MIT",
@@ -131,6 +131,10 @@
131
131
  background-color: tm-color('warning-light-new');
132
132
  color: tm-color('warning-new');
133
133
 
134
+ &--disabled {
135
+ color: tm-color('white');
136
+ }
137
+
134
138
  @media (hover: hover) {
135
139
  &:hover {
136
140
  background-color: tm-color('warning-new');
@@ -262,11 +266,19 @@
262
266
  }
263
267
 
264
268
  &--medium {
265
- font-size: $font-size-medium;
269
+ font-size: ($font-size-medium + rem-calc(2));
270
+
271
+ @include breakpoint(laptop) {
272
+ font-size: $font-size-medium;
273
+ }
266
274
  }
267
275
 
268
276
  &--small {
269
- font-size: $font-size-small;
277
+ font-size: ($font-size-small + rem-calc(2));
278
+
279
+ @include breakpoint(laptop) {
280
+ font-size: $font-size-small;
281
+ }
270
282
  }
271
283
 
272
284
  @media (hover: hover) {
@@ -147,5 +147,7 @@ $tm-colors: (
147
147
  'shadow-blue': #66758c,
148
148
  'soft-lemon': #ffffe0,
149
149
  'frost-grey': #ccd1d9,
150
- 'powder-pink': #f7e5e7
150
+ 'powder-pink': #f7e5e7,
151
+ 'cloud-grey': #e0e0e0,
152
+ 'light-pink': #fff1f1
151
153
  );