@times-design-system/theme-scss 2.3.1 → 2.4.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.
@@ -42,10 +42,10 @@ $breakpoint-xLarge: 1440px;
42
42
  grid-template-columns: repeat(4, 1fr);
43
43
  grid-gap: 24px;
44
44
  margin-inline: 20px;
45
- max-width: 393px;
45
+ max-width: 100%;
46
46
 
47
47
  // Medium breakpoint
48
- @media (min-width: $breakpoint-medium) {
48
+ @media (min-width: 768px) {
49
49
  grid-template-columns: repeat(12, 1fr);
50
50
  grid-gap: 32px;
51
51
  margin-inline: 24px;
@@ -53,12 +53,12 @@ max-width: 768px;
53
53
  }
54
54
 
55
55
  // Large breakpoint
56
- @media (min-width: $breakpoint-large) {
56
+ @media (min-width: 1024px) {
57
57
  max-width: 1024px;
58
58
  }
59
59
 
60
60
  // XLarge breakpoint
61
- @media (min-width: $breakpoint-xLarge) {
61
+ @media (min-width: 1144px) {
62
62
  max-width: 1144px;
63
63
  }
64
64
  }
@@ -66,4 +66,8 @@ max-width: 768px;
66
66
  .tds-grid {
67
67
  display: grid;
68
68
  @include responsive-tds-grid();
69
+
70
+ &.tds-grid--full-width {
71
+ max-width: 100%;
72
+ }
69
73
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@times-design-system/theme-scss",
3
- "version": "2.3.1",
3
+ "version": "2.4.0",
4
4
  "type": "module",
5
5
  "description": "Times Design System theme package - pre-resolved color tokens for React",
6
6
  "keywords": [
@@ -44,5 +44,5 @@
44
44
  "url": "https://github.com/newsuk/times-design-system/issues"
45
45
  },
46
46
  "homepage": "https://github.com/newsuk/times-design-system#readme",
47
- "gitHead": "e274405b62c84bc5f65655ece8c601a875deebee"
47
+ "gitHead": "d0f5326ad64d9ae598b1c1789082b9be749ddbd1"
48
48
  }