Skip to content

Commit

Permalink
Increase breakpoint for 5 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
shamoon committed Apr 6, 2023
1 parent 379d2e5 commit cd95c93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/services/group.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function ServicesGroup({ services, layout }) {
<div
key={services.name}
className={classNames(
layout?.style === "row" ? "basis-full" : "basis-full md:basis-1/2 lg:basis-1/3 xl:basis-1/4 2xl:basis-1/5",
layout?.style === "row" ? "basis-full" : "basis-full md:basis-1/2 lg:basis-1/3 xl:basis-1/4 3xl:basis-1/5",
"flex-1 p-1"
)}
>
Expand Down
4 changes: 4 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ module.exports = {
900: "rgb(var(--color-900) / <alpha-value>)",
},
},
screens: {
'3xl': '1800px',
// => @media (min-width: 1800px) { ... }
},
},
},
plugins: [tailwindForms, tailwindScrollbars],
Expand Down

0 comments on commit cd95c93

Please sign in to comment.