From 78cbc864a29c359a109aeb2c64d02106b646da5a Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Mon, 28 Mar 2022 14:33:22 -0400 Subject: [PATCH 001/151] Update play-cdn.js --- src/pages/docs/installation/play-cdn.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/docs/installation/play-cdn.js b/src/pages/docs/installation/play-cdn.js index 8b16aec56..8d3d5b63d 100644 --- a/src/pages/docs/installation/play-cdn.js +++ b/src/pages/docs/installation/play-cdn.js @@ -104,10 +104,10 @@ let steps = [ }, }, { - title: 'Try working with a core plugin', + title: 'Try using a first-party plugin', body: () => (

- Enable core plugins, like forms and typography, using the plugins query + Enable first-party plugins, like forms and typography, using the plugins query parameter.

), From 0286f694628f8fb61b43bca5c4c002f19a3194b9 Mon Sep 17 00:00:00 2001 From: MackenzieChoy <78372760+MackenzieChoy@users.noreply.github.com> Date: Sun, 3 Apr 2022 10:04:00 -0400 Subject: [PATCH 002/151] Fix grammar in starting paragraph (#1232) --- src/pages/docs/hover-focus-and-other-states.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/docs/hover-focus-and-other-states.mdx b/src/pages/docs/hover-focus-and-other-states.mdx index b5b9acb3b..54381a75a 100644 --- a/src/pages/docs/hover-focus-and-other-states.mdx +++ b/src/pages/docs/hover-focus-and-other-states.mdx @@ -6,7 +6,7 @@ description: Using utilities to style elements on hover, focus, and more. import { TipGood, TipBad, TipInfo } from '@/components/Tip' -Every utility class in Tailwind can be applied _conditionally_ by adding modifier to the beginning of the class name that describes the condition you want to target. +Every utility class in Tailwind can be applied _conditionally_ by adding a modifier to the beginning of the class name that describes the condition you want to target. For example, to apply the `bg-sky-700` class on hover, use the `hover:bg-sky-700` class: From 2374250886ac503b7b296776f6a774ba68b8bf61 Mon Sep 17 00:00:00 2001 From: "Irsyad A. Panjaitan" Date: Mon, 4 Apr 2022 20:40:51 +0700 Subject: [PATCH 003/151] Update prettier.config.js (#1229) --- prettier.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prettier.config.js b/prettier.config.js index 54776553a..09e35c0a5 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -9,5 +9,5 @@ module.exports = { quoteProps: 'as-needed', jsxSingleQuote: false, bracketSpacing: true, - jsxBracketSameLine: false, + bracketSameLine: false, } From 2ae22588cc7a21a4f1151735079da3e798b34ffa Mon Sep 17 00:00:00 2001 From: Brad Cornes Date: Tue, 5 Apr 2022 11:20:28 +0100 Subject: [PATCH 004/151] Add 404 page (#1234) --- src/css/base.css | 5 +++++ src/pages/404.js | 30 ++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 src/pages/404.js diff --git a/src/css/base.css b/src/css/base.css index 005e28195..de7ffd3b5 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -5,9 +5,14 @@ } html { + height: 100%; font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11'; } +body { + min-height: 100%; +} + abbr[title] { text-decoration: none; } diff --git a/src/pages/404.js b/src/pages/404.js new file mode 100644 index 000000000..a846d4648 --- /dev/null +++ b/src/pages/404.js @@ -0,0 +1,30 @@ +const css = ` + body { + display: flex; + } + #__next { + width: 100%; + display: flex; + flex-direction: column; + } +` + +export default function Error() { + return ( +
+

+ 404 +

+

+ This page could not be found. +

+