diff --git a/@/components/ui/accordion.tsx b/@/components/ui/accordion.tsx index fed369166..7bf547d6c 100644 --- a/@/components/ui/accordion.tsx +++ b/@/components/ui/accordion.tsx @@ -52,7 +52,7 @@ const AccordionContent = React.forwardRef< )} {...props} > -
{children}
+
{children}
)) AccordionContent.displayName = AccordionPrimitive.Content.displayName diff --git a/components/layout/search/filter/dropdown.tsx b/components/layout/search/filter/dropdown.tsx index 31daa25ce..5aadb134e 100644 --- a/components/layout/search/filter/dropdown.tsx +++ b/components/layout/search/filter/dropdown.tsx @@ -42,7 +42,7 @@ export default function FilterItemDropdown({ list }: { list: ListItem[] }) { onClick={() => { setOpenSelect(!openSelect); }} - className="flex w-full items-center justify-between rounded border border-black/30 px-4 py-2 text-sm dark:border-white/30" + className="flex w-full items-center justify-between rounded border border-neutral-500/30 px-4 py-2 text-sm text-neutral-100 dark:border-white/30" >
{active}
@@ -52,7 +52,7 @@ export default function FilterItemDropdown({ list }: { list: ListItem[] }) { onClick={() => { setOpenSelect(false); }} - className="absolute z-40 w-full rounded-b-md bg-white p-4 shadow-md dark:bg-black" + className="absolute z-40 w-full rounded-b-md bg-neutral-800 text-neutral-100 p-4 shadow-md dark:bg-black" > {list.map((item: ListItem, i) => ( diff --git a/components/layout/search/filter/item.tsx b/components/layout/search/filter/item.tsx index d9298582c..d4d3a82f8 100644 --- a/components/layout/search/filter/item.tsx +++ b/components/layout/search/filter/item.tsx @@ -22,7 +22,7 @@ function PathFilterItem({ item }: { item: PathFilterItem }) { }, [pathname, item.path]); return ( -
  • +
  • +
  • 1 ? (
    -
    +
    -
    +
    {images.length > 1 ? ( -
    +
    {images.map((image, index) => { const isActive = index === currentImageIndex; return ( diff --git a/components/ui/prose.tsx b/components/ui/prose.tsx index f910d2296..5ae2410d8 100644 --- a/components/ui/prose.tsx +++ b/components/ui/prose.tsx @@ -10,7 +10,7 @@ const Prose: FunctionComponent = ({ html, className }) => { return (