From 5629440acf167721b276812b02a34983221b0d4c Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Fri, 14 Mar 2025 12:20:10 -0700
Subject: [PATCH] Fix: fix fiveColumns option (#4924)

---
 src/components/services/group.jsx | 2 +-
 tailwind.config.js                | 4 ----
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/components/services/group.jsx b/src/components/services/group.jsx
index 06fb83e1..433c0fa7 100644
--- a/src/components/services/group.jsx
+++ b/src/components/services/group.jsx
@@ -31,7 +31,7 @@ export default function ServicesGroup({
       className={classNames(
         "services-group flex-1",
         layout?.style === "row" ? "basis-full" : "basis-full md:basis-1/2 lg:basis-1/3 xl:basis-1/4",
-        layout?.style !== "row" && fiveColumns ? "3xl:basis-1/5" : "",
+        layout?.style !== "row" && fiveColumns ? "2xl:basis-1/5" : "",
         groupPadding,
         isSubgroup ? "subgroup" : "",
       )}
diff --git a/tailwind.config.js b/tailwind.config.js
index 5d425938..a4fa5b53 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -30,10 +30,6 @@ module.exports = {
           900: "rgb(var(--color-900) / <alpha-value>)",
         },
       },
-      screens: {
-        "3xl": "1800px",
-        // => @media (min-width: 1800px) { ... }
-      },
     },
   },
   plugins: [tailwindForms, tailwindScrollbars],