Defaults
There are some default values configured into layland for spacing and breakpoint:
// default vertical space
$vSpace: CSSLength = 24;
// default horizontal space
$hSpace: CSSLength = 24;
// default breakpoint
$bp: number = 1024;
Usage by components
The following components use the defaults if an explicit prop value is not passed in:
- Column:
$vSpace
- Row:
$hSpace
- Responsive:
$vSpace
/$hSpace
/$bp
- Grid:
$vSpace
/$hSpace
Configuring
You can set the defaults using the ThemeProvider
(part of styled-components
).
Here is an example with different defaults
Live Editor
Result
Loading...