This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
|
@mixin constrain-width {
|
|
margin: auto;
|
|
transition: 0.5s width;
|
|
width: $medium-breakpoint;
|
|
|
|
@media (max-width: $medium-breakpoint) {
|
|
width: 95%;
|
|
}
|
|
}
|