13 lines
222 B
SCSS
13 lines
222 B
SCSS
|
$medium-breakpoint: 900px;
|
||
|
$large-breakpoint: 1200px;
|
||
|
|
||
|
@mixin responsive-container {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
width: $large-breakpoint;
|
||
|
|
||
|
@media (max-width: $large-breakpoint) {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|