File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ const { title, subtitle } = Astro.props;
66// to the header only when the filter by keyword is not present.
77const routesWithFilter = [" /reference" ];
88const isFilterRoute = routesWithFilter .some ((route ) =>
9- Astro .url .pathname .includes (route )
9+ Astro .url .pathname .includes (route ),
1010);
1111const borderStyle = isFilterRoute ? " " : " border-b border-sidebar-type-color" ;
1212---
1313
1414<div
15- class =`content-grid-simple min-h-[350px] h-[50vh] pt-[11.25rem] lg:pt-4xl bg-accent-color text-accent-type-color pb-md px-5 md:px-lg ${borderStyle }`
15+ class =`content-grid-simple min-h-[350px] min- h-[50vh] h-auto pt-[11.25rem] lg:pt-4xl bg-accent-color text-accent-type-color pb-md px-5 md:px-lg ${borderStyle }`
1616>
1717 <h1 class =" whitespace-pre-line col-span-full mb-5" >{ title } </h1 >
1818 <p class =" text-h3 !mt-0 mb-3xl col-span-2" >{ subtitle } </p >
You can’t perform that action at this time.
0 commit comments