Grid and Flexbox layouts added

This commit is contained in:
David Botton 2021-01-25 21:02:32 -05:00
parent 3786fe831a
commit 521b298917
4 changed files with 782 additions and 7 deletions

View file

@ -171,6 +171,37 @@ embedded in a native template application.)"
(float-wrap generic-function)
(display-type type)
(display generic-function)
(order generic-function)
(flex generic-function)
(set-flex generic-function)
(flex-wrap-type type)
(flex-wrap generic-function)
(flex-direction-type type)
(flex-direction generic-function)
(grid-template-columns generic-function)
(grid-template-rows generic-function)
(grid-template-areas generic-function)
(column-gap generic-function)
(row-gap generic-function)
(grid-auto-columns generic-function)
(grid-auto-rows generic-function)
(grid-auto-flow generic-function)
(grid-column-start generic-function)
(grid-column-end generic-function)
(grid-row-start generic-function)
(grid-row-end generic-function)
(align-items-type type)
(align-items generic-function)
(align-self-type type)
(align-self generic-function)
(align-content-type type)
(align-content generic-function)
(justify-items-type type)
(justify-items generic-function)
(justify-self-type type)
(justify-self generic-function)
(justify-content-type type)
(justify-content generic-function)
(overflow-type type)
(overflow generic-function)
(overflow-x-type type)