Merge pull request #1473 from gentslava/fix/service_layout

fix(ui): projects layout
This commit is contained in:
Mauricio Siu 2025-03-15 13:41:08 -06:00 committed by GitHub
commit e323ade29e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -115,7 +115,7 @@ export const ShowProjects = () => {
</span>
</div>
)}
<div className="w-full grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-4 flex-wrap gap-5">
<div className="w-full grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-4 3xl:grid-cols-5 flex-wrap gap-5">
{filteredProjects?.map((project) => {
const emptyServices =
project?.mariadb.length === 0 &&

View File

@ -22,6 +22,9 @@ const config = {
fontFamily: {
sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
},
screens: {
"3xl": "120rem",
},
maxWidth: {
"2xl": "40rem",
"8xl": "85rem",