Skip to content

Commit 25a701c

Browse files
authored
Documentation edits made through Mintlify web editor
1 parent a25a756 commit 25a701c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

snippets/logo_card.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
export const LogoCard = ({ img, href, title, description }) => {
1+
export const LogoCard = ({ img, href, title, description, backgroundColor = 'white' }) => {
22
return (
33
<a
44
href={href}
55
className="card block not-prose font-normal group relative my-2 ring-2 ring-transparent rounded-xl bg-white/50 dark:bg-codeblock/50 border border-gray-100 shadow-md dark:shadow-none shadow-gray-300/10 dark:border-gray-800/50 overflow-hidden w-full cursor-pointer hover:!border-primary dark:hover:!border-primary-light"
66
>
77
<div className="flex flex-col h-full">
8-
<div className="integration-logo w-full h-32 flex items-center justify-center bg-white overflow-hidden">
8+
<div
9+
className="integration-logo w-full h-32 flex items-center justify-center overflow-hidden"
10+
style={{ backgroundColor }}
11+
>
912
<img
1013
src={img}
1114
alt={`${title} logo`}

0 commit comments

Comments
 (0)