mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-15 09:20:32 +00:00
Fix: fix larger breakpoint (#4935)
This commit is contained in:
parent
8190260400
commit
a0dc8c9ccb
2 changed files with 5 additions and 1 deletions
|
@ -31,7 +31,7 @@ export default function ServicesGroup({
|
||||||
className={classNames(
|
className={classNames(
|
||||||
"services-group flex-1",
|
"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" ? "basis-full" : "basis-full md:basis-1/2 lg:basis-1/3 xl:basis-1/4",
|
||||||
layout?.style !== "row" && fiveColumns ? "2xl:basis-1/5" : "",
|
layout?.style !== "row" && fiveColumns ? "3xl:basis-1/5" : "",
|
||||||
groupPadding,
|
groupPadding,
|
||||||
isSubgroup ? "subgroup" : "",
|
isSubgroup ? "subgroup" : "",
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
@config '../../tailwind.config.js';
|
@config '../../tailwind.config.js';
|
||||||
|
|
||||||
|
@theme {
|
||||||
|
--breakpoint-3xl: 112rem;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
The default border color has changed to `currentColor` in Tailwind CSS v4,
|
The default border color has changed to `currentColor` in Tailwind CSS v4,
|
||||||
so we've added these compatibility styles to make sure everything still
|
so we've added these compatibility styles to make sure everything still
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue