Makes a clean demo of using tailwind for the company 1099 page.
This commit is contained in:
8
src/clj/auto_ap/ssr/components/card.clj
Normal file
8
src/clj/auto_ap/ssr/components/card.clj
Normal file
@@ -0,0 +1,8 @@
|
||||
(ns auto-ap.ssr.components.card)
|
||||
|
||||
(defn content-card- [params & children]
|
||||
[:section {:class " py-3 sm:py-5"}
|
||||
[:div {:class "max-w-screen-2xl"}
|
||||
(into
|
||||
[:div {:class "relative overflow-hidden shadow-md dark:bg-gray-800 sm:rounded-lg border-2 border-gray-200 dark:border-gray-900 bg-white"}]
|
||||
children)]])
|
||||
Reference in New Issue
Block a user