add dark styles to modal

This commit is contained in:
Artur Lozovski 2023-12-15 14:30:49 +00:00
parent ebe737bc99
commit e06af3e570
5 changed files with 16 additions and 11 deletions

View file

@ -1,5 +1,5 @@
import { ReactNode } from "react";
export const ModalBody = ({ children }: { children: ReactNode }) => {
return <div className="p-3 border-b">{children}</div>;
return <div className="p-3 border-b dark:border-slate-500">{children}</div>;
};