Files
metabuilder/packages/dashboard/seed/scripts/layout/flex.lua
JohnDoe6345789 afa51500a5 feat(layout): add flex, grid, section, and stat components for dashboard layout
feat(nav_menu): implement menu item, group, and divider components
feat(ui_header): create logo, user, and actions sections for header rendering
2025-12-30 00:01:01 +00:00

12 lines
207 B
Lua

-- Dashboard flex layout
local function flex(direction, gap, align)
return {
type = "flex",
direction = direction or "row",
gap = gap or 16,
align = align or "stretch"
}
end
return flex