diff --git a/src/components/Common/Accordion/index.tsx b/src/components/Common/Accordion/index.tsx
index 49187bd03..d9418acc6 100644
--- a/src/components/Common/Accordion/index.tsx
+++ b/src/components/Common/Accordion/index.tsx
@@ -19,13 +19,19 @@ export interface AccordionChildProps {
type AccordionContentProps = {
isOpen: boolean;
children: React.ReactNode;
+ className?: string;
};
export const AccordionContent = ({
isOpen,
children,
+ className,
}: AccordionContentProps) => {
- return {children};
+ return (
+
+ {children}
+
+ );
};
const Accordion = ({
diff --git a/src/components/Login/index.tsx b/src/components/Login/index.tsx
index 46c159d3b..08aefccf0 100644
--- a/src/components/Login/index.tsx
+++ b/src/components/Login/index.tsx
@@ -145,29 +145,39 @@ const Login = () => {
{({ openIndexes, handleClick, AccordionContent }) => (
<>
{signinMethods.map((signinMethod, index) => (
- <>
+
-
+
{signinMethod.content}
- >
+
))}
>
)}