From cd95c93e68fa1dd2cbc138ab9fb19829559d7f9d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 5 Apr 2023 23:25:08 -0700 Subject: [PATCH] Increase breakpoint for 5 columns --- src/components/services/group.jsx | 2 +- tailwind.config.js | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/services/group.jsx b/src/components/services/group.jsx index 8b7db3086..7b7e2e874 100644 --- a/src/components/services/group.jsx +++ b/src/components/services/group.jsx @@ -8,7 +8,7 @@ export default function ServicesGroup({ services, layout }) {
diff --git a/tailwind.config.js b/tailwind.config.js index b6e27a307..0d78a6c0e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -25,6 +25,10 @@ module.exports = { 900: "rgb(var(--color-900) / )", }, }, + screens: { + '3xl': '1800px', + // => @media (min-width: 1800px) { ... } + }, }, }, plugins: [tailwindForms, tailwindScrollbars],