Reformat code

This commit is contained in:
Marcus Kammer 2025-02-09 11:59:20 +01:00
parent 1ccc635485
commit f626414314
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -98,10 +98,14 @@ ROW-CLASS: Enable a div as row."
`(section ,',grid-class ,',row-class ,@body)))
(define-section-type with-section nil nil)
(define-section-type with-section-row (:row t) nil)
(define-section-type with-section-col (:col t) nil)
(define-section-type with-section-row
(:row t) nil)
(define-section-type with-section-col
(:col t) nil)
;; 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)
(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)
(define-section-type with-section-projects
(:row 1 :sm 1 :md 2 :lg 3 :g 3) nil)