full width list idems on mobile (#915)
This commit is contained in:
parent
6f204ca521
commit
7dd6fdde7a
3 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@ import classNames from "@lib/classNames";
|
||||||
|
|
||||||
export function List(props: JSX.IntrinsicElements["ul"]) {
|
export function List(props: JSX.IntrinsicElements["ul"]) {
|
||||||
return (
|
return (
|
||||||
<ul {...props} className={classNames("overflow-hidden rounded-sm sm:mx-0", props.className)}>
|
<ul {...props} className={classNames("sm:overflow-hidden rounded-sm sm:mx-0 -mx-4", props.className)}>
|
||||||
{props.children}
|
{props.children}
|
||||||
</ul>
|
</ul>
|
||||||
);
|
);
|
||||||
|
|
|
@ -58,7 +58,7 @@ export const ALL_INTEGRATIONS = [
|
||||||
type: "stripe_payment",
|
type: "stripe_payment",
|
||||||
title: "Stripe",
|
title: "Stripe",
|
||||||
imageSrc: "integrations/stripe.svg",
|
imageSrc: "integrations/stripe.svg",
|
||||||
description: "Receive payments",
|
description: "Collect payments",
|
||||||
variant: "payment",
|
variant: "payment",
|
||||||
},
|
},
|
||||||
] as const;
|
] as const;
|
||||||
|
|
|
@ -384,11 +384,11 @@ export default function IntegrationsPage() {
|
||||||
)}
|
)}
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
<h2 className="font-bold text-gray-900 flex items-center content-center mb-2 mt-4">
|
|
||||||
Connect an additional calendar
|
|
||||||
</h2>
|
|
||||||
</List>
|
</List>
|
||||||
|
<ShellSubHeading
|
||||||
|
className="mt-6"
|
||||||
|
title={<SubHeadingTitleWithConnections title="Connect an additional calendar" />}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<List>
|
<List>
|
||||||
|
|
Loading…
Reference in a new issue