diff --git a/Gruntfile.js b/Gruntfile.js
index 274fd8d1e..8afab365c 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -202,7 +202,8 @@ module.exports = function (grunt) {
sm: 'screen and (min-width: 35.5em)', // 568px
md: 'screen and (min-width: 48em)', // 768px
lg: 'screen and (min-width: 64em)', // 1024px
- xl: 'screen and (min-width: 80em)' // 1280px
+ xl: 'screen and (min-width: 80em)', // 1280px
+ xxl: 'screen and (min-width: 120em)' // 1920px
}
}
}
diff --git a/site/src/pages/grids/index.js b/site/src/pages/grids/index.js
index d554a13c7..28be48a3e 100644
--- a/site/src/pages/grids/index.js
+++ b/site/src/pages/grids/index.js
@@ -561,6 +561,12 @@ function Grids() {
≥ 1280px |
.pure-u-xl-* |
+
+ xxl |
+ @media screen and (min-width: 120em) |
+ ≥ 1920px |
+ .pure-u-xxl-* |
+
diff --git a/site/src/pages/start/index.js b/site/src/pages/start/index.js
index 1edaad6df..b0a92708d 100644
--- a/site/src/pages/start/index.js
+++ b/site/src/pages/start/index.js
@@ -148,6 +148,12 @@ function Start() {
≥ 1280px |
.pure-u-xl-* |
+
+ xxl |
+ @media screen and (min-width: 120em) |
+ ≥ 1920px |
+ .pure-u-xxl-* |
+
diff --git a/site/src/pages/tools/index.js b/site/src/pages/tools/index.js
index 5b2f5b045..5dd2da440 100644
--- a/site/src/pages/tools/index.js
+++ b/site/src/pages/tools/index.js
@@ -94,7 +94,8 @@ function Tools() {
sm: 'screen and (min-width: 35.5em)', // 568px
md: 'screen and (min-width: 48em)', // 768px
lg: 'screen and (min-width: 64em)', // 1024px
- xl: 'screen and (min-width: 80em)' // 1280px
+ xl: 'screen and (min-width: 80em)', // 1280px
+ xxl: 'screen and (min-width: 120em)' // 1920px
}
}
}
@@ -128,7 +129,8 @@ function Tools() {
sm: 'screen and (min-width: 35.5em)', // 568px
md: 'screen and (min-width: 48em)', // 768px
lg: 'screen and (min-width: 64em)', // 1024px
- xl: 'screen and (min-width: 80em)' // 1280px
+ xl: 'screen and (min-width: 80em)', // 1280px
+ xxl: 'screen and (min-width: 120em)' // 1920px
}
})).toString();