diff --git a/.gitignore b/.gitignore index 454f55e4f..986900664 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ package-lock.json # Cypress local support artifacts cypress/screenshots cypress/videos +cypress/downloads/downloads.html # Logs logs diff --git a/.lintstagedrc b/.lintstagedrc index 8d79dfc0a..90027c770 100644 --- a/.lintstagedrc +++ b/.lintstagedrc @@ -1,10 +1,4 @@ { - "*.js": [ - "prettier --write", - "eslint --fix", - ], - "*.css": [ - "prettier --write", - "stylelint --fix", - ] + "*.js": ["prettier --write", "eslint --fix"], + "*.css": ["prettier --write", "stylelint --fix"] } diff --git a/components/ErrorDisplay/ErrorDisplay.js b/components/ErrorDisplay/ErrorDisplay.js index 135c9f5a0..ea234e614 100644 --- a/components/ErrorDisplay/ErrorDisplay.js +++ b/components/ErrorDisplay/ErrorDisplay.js @@ -1,7 +1,6 @@ import { useEffect } from 'react'; import { number } from 'prop-types'; import Head from 'components/head'; -import styles from './ErrorDisplay.module.css'; ErrorDisplay.propTypes = { statusCode: number }; @@ -21,11 +20,15 @@ function ErrorDisplay({ statusCode }) { -
+
We're so ashamed. You definitely weren't supposed to see this...
We're so ashamed. You definitely weren't supposed to see this...
diff --git a/cypress/downloads/downloads.html b/cypress/downloads/downloads.html index 27610fe28..18d3040b4 100644 Binary files a/cypress/downloads/downloads.html and b/cypress/downloads/downloads.html differ diff --git a/tailwind.config.js b/tailwind.config.js index 6723d5942..18de77267 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -9,7 +9,17 @@ module.exports = { './src/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { - extend: {}, + screens: { + sm: '576px', + md: '768px', + lg: '992px', + xl: '1200px', + }, + extend: { + colors: { + themeGray: '#121212', + }, + }, }, plugins: [], important: '#__next',