This commit is contained in:
Patrick Alvin Alcala 2025-09-30 16:53:26 +08:00
parent 76fe316bf7
commit 6f6bde6477
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@
align-items: center
align-content: center
.column-right
.column-bottom
display: flex
flex-direction: column
flex-wrap: wrap

View file

@ -3,7 +3,7 @@ import type { JSXElement } from 'solid-js'
interface Props {
children: JSXElement
content?: 'top' | 'center' | 'right' | 'split' | 'spaced'
content?: 'top' | 'center' | 'bottom' | 'split' | 'spaced'
gap?: number
}