Skip to content

Commit 6b2c7d1

Browse files
committed
small tweak
1 parent 8d39a6f commit 6b2c7d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ui/accordion.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const AccordionTrigger = React.forwardRef<
2727
<AccordionPrimitive.Trigger
2828
ref={ref}
2929
className={cn(
30-
'flex flex-1 items-center justify-start p-2 rounded-lg text-md bg-neutral-400 text-white transition-all text-left [&[data-state=open]>svg]:rotate-180',
30+
'flex flex-1 items-center justify-start p-2 rounded-lg text-md bg-aaLight text-black transition-all text-left [&[data-state=open]>svg]:rotate-180',
3131
className
3232
)}
3333
{...props}
@@ -68,7 +68,7 @@ export const Accordion = (props: AccordionProps) => (
6868
<AccordionItem value="item-1">
6969
<AccordionTrigger>{props.title}</AccordionTrigger>
7070
<AccordionContent>
71-
<Markdown className="mt-2 text-gray-800 markdown">
71+
<Markdown className="mt-2 text-gray-800 markdown px-3">
7272
{props.content}
7373
</Markdown>
7474
</AccordionContent>

0 commit comments

Comments
 (0)