11 lines
161 B
SCSS
11 lines
161 B
SCSS
|
// Smooth sizing container
|
||
|
// -------------------------
|
||
|
|
||
|
.container-smooth {
|
||
|
max-width: $container-lg;
|
||
|
|
||
|
@media (min-width: 1px) {
|
||
|
width: auto;
|
||
|
}
|
||
|
}
|