OBJECT
LayoutBuilderStyle
Style configuration for layout elements
link GraphQL Schema definition
- type LayoutBuilderStyle {
- # Background color (hex, rgb, or named color)
- : String!
- # Opacity value (0.0 to 1.0)
- : Float!
- # CSS align-items value (flex-start, center, flex-end)
- : String
- # CSS justify-content value (flex-start, center, flex-end, space-between)
- : String
- # CSS flex-direction value (row, column)
- : String
- # CSS flex value (e.g. 1, auto, 0 0 33%)
- : String
- # CSS gap value
- : String
- # CSS column-gap value
- : String
- # CSS row-gap value
- : String
- # Margin (top, right, bottom, left)
- : LayoutBuilderSpacing
- # Padding (top, right, bottom, left)
- : LayoutBuilderSpacing
- # Width (value, min, max)
- : LayoutBuilderSize
- # Height (value, min, max)
- : LayoutBuilderSize
- # Border (style, color, width, radius)
- : LayoutBuilderBorder
- # CSS overflow (e.g. hidden)
- : String
- }