From ebc408c2aec4a913f276e6d33355b2d70b9d9eb8 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 9 Feb 2025 09:47:33 +0100 Subject: [PATCH] Add new section definition --- src/section.lisp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/section.lisp b/src/section.lisp index ce093e4..a38d95d 100644 --- a/src/section.lisp +++ b/src/section.lisp @@ -14,6 +14,7 @@ #:with-section-row #:with-section-col #:with-section-props + #:with-section-projects #:define-section-type #:titlebar #:with-title-bar)) @@ -99,3 +100,5 @@ ROW-CLASS: Enable a div as row." ;; In my GUIs I often like to have some kind of `properties` on the left side. (define-section-type with-section-props (:col t :xs 12 :lg 4 :xl 2) nil) +;; use with cards to show projects +(define-section-type with-section-projects (:row 1 :sm 1 :md 2 :lg 3 :g 3) nil)