Col
New

The Col component is a "column". Usually used inside a Row component or in a Nova component with the Row parameter set to true.

Color

Color define the column color.
TypeDefault Value
stringnull
Size 4
Size 8
Size 4
Size 8
<NVBlock PX="4">
  <NVRow>
    <NVCol Size="4" Color="primary">Size 4</NVCol>
    <NVCol Size="8" Color="secondary">Size 8</NVCol>  
  </NVRow>
  <NVRow>
    <NVCol Size="4" Color="orange-50">Size 4</NVCol>
    <NVCol Size="8" Color="petrol-50">Size 8</NVCol>  
  </NVRow>
</NVBlock>

Size

Set the size of the column.
Available values are all integer between 1 and 12.

TypeDefault Value
stringsm
Size 4
Size 8
<NVBlock PX="4">
  <NVRow>
    <NVCol Size="4" Color="primary">Size 4</NVCol>
    <NVCol Size="8" Color="secondary">Size 8</NVCol>  
  </NVRow>
</NVBlock>
On this page