Skip to content

Commit a202b26

Browse files
Safari fix (windmill-labs#572)
* Display all changelogs in a single page * Fix safari display + list of components
1 parent 9e72422 commit a202b26

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/landing/AppLightSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,11 +605,11 @@ export default function AppsLightSections() {
605605
<div className="col-span-2">
606606
<div className="relative w-full bg-orange-900 rounded-lg p-6 h-96">
607607
<div className="border-orange-600 border-2 relative rounded-lg p-4 h-full w-full bg-white bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] [background-size:16px_16px] overflow-hidden overflow-y-scroll">
608-
<div className="grid grid-cols-8 gap-4">
608+
<div className="grid grid-cols-2 md:grid-cols-8 gap-4">
609609
{components.map((item, index) => (
610610
<a
611611
href={item.documentationLink}
612-
className="col-span-1 h-28 rounded-md border flex justify-center items-center gap-2 flex-col bg-white hover:bg-gray-50 !text-gray-900"
612+
className="col-span-1 h-28 rounded-md border flex justify-center items-center gap-2 flex-col bg-white hover:bg-gray-50 !text-gray-900"
613613
>
614614
<item.Icon size={32} />
615615
<div className="text-xs text-center">{item.name}</div>

src/landing/LightFeatureCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function LightFeatureCard({
4949
return (
5050
<a
5151
className={twMerge(
52-
`text-black dark:text-white !no-underline hover:text-black hover:dark:text-white bg-gray-50 dark:bg-gray-900 rounded-lg overflow-hidden ${span} group cursor-pointer p-8 relative grid gap-4 hover:bg-opacity-50 transition-all group `,
52+
`text-black dark:text-white !no-underline hover:text-black hover:dark:text-white bg-gray-50 dark:bg-gray-900 rounded-lg overflow-hidden ${span} group cursor-pointer p-8 relative grid gap-4 hover:bg-opacity-50 transition-all h-max `,
5353
spanOverride ?? (vertical ? 'grid-cols-1' : 'grid-cols-1 md:grid-cols-2')
5454
)}
5555
onMouseOver={() => {

0 commit comments

Comments
 (0)