9 lines
323 B
CSS
9 lines
323 B
CSS
/**
|
|
* REGION
|
|
* Add consistent vertical padding to create regions of content
|
|
* Can either be configured by setting --region-space or use a default from the space scale
|
|
*/
|
|
.region {
|
|
padding-block-start: var(--region-space-top, var(--space-l-2xl));
|
|
padding-block-end: var(--region-space-bottom, var(--space-l-2xl));
|
|
}
|