Reformat code
This commit is contained in:
parent
1ccc635485
commit
f626414314
1 changed files with 8 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue