mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
19 lines
683 B
SCSS
19 lines
683 B
SCSS
// ==========================================================================
|
|
// Objects / Container
|
|
// ==========================================================================
|
|
|
|
// Page-level constraining and wrapping elements.
|
|
//
|
|
// > In programming languages the word *container* is generally used for structures
|
|
// that can contain more than one element.
|
|
// > A *wrapper* instead is something that wraps around a single object to provide
|
|
// more functionalities and interfaces to it.
|
|
// @link http://stackoverflow.com/a/13202141/140357
|
|
|
|
.o-container {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding-left: var(--grid-margin);
|
|
padding-right: var(--grid-margin);
|
|
}
|