11 lines
304 B
CSS
11 lines
304 B
CSS
/**
|
|
* WRAPPER
|
|
* Sets a max width, adds a consistent gutter and horizontally
|
|
* centers the contents
|
|
* Info: https://piccalil.li/quick-tip/use-css-clamp-to-create-a-more-flexible-wrapper-utility/
|
|
*/
|
|
.wrapper {
|
|
margin-inline: auto;
|
|
position: relative;
|
|
inline-size: var(--wrapper-width, 85rem);
|
|
}
|