From 436145cb0921ef40ca3fe5852f92cb38bba3fc40 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 10 Sep 2021 02:22:59 -0400 Subject: [PATCH] Updating color for breakpoint example The current example has `bg-teal-500` but it looks like that doesn't exist in the latest version (2.2.14) of tailwindcss https://tailwindcss.com/docs/customizing-colors. --- src/pages/docs/responsive-design.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/docs/responsive-design.mdx b/src/pages/docs/responsive-design.mdx index c56f67ebc..7d6699776 100644 --- a/src/pages/docs/responsive-design.mdx +++ b/src/pages/docs/responsive-design.mdx @@ -103,10 +103,10 @@ Tailwind's breakpoints only include a `min-width` and don't include a `max-width If you'd like to apply a utility at one breakpoint only, the solution is to *undo* that utility at larger sizes by adding another utility that counteracts it. -Here is an example where the background color is red at the `md` breakpoint, but teal at every other breakpoint: +Here is an example where the background color is red at the `md` breakpoint, but green at every other breakpoint: ```html -
+
```