UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

24 lines (21 loc) 666 B
import { createTheme } from '../../helpers/create-theme.js'; const cardTheme = createTheme({ root: { base: "flex rounded-lg border border-gray-200 bg-white shadow-md dark:border-gray-700 dark:bg-gray-800", children: "flex h-full flex-col justify-center gap-4 p-6", horizontal: { off: "flex-col", on: "flex-col md:max-w-xl md:flex-row" }, href: "hover:bg-gray-100 dark:hover:bg-gray-700" }, img: { base: "", horizontal: { off: "rounded-t-lg", on: "h-96 w-full rounded-t-lg object-cover md:h-auto md:w-48 md:rounded-none md:rounded-l-lg" } } }); export { cardTheme }; //# sourceMappingURL=theme.js.map