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.
2020-02-29 22:48:09 +00:00
|
|
|
@mixin constrain-width {
|
|
|
|
margin: auto;
|
|
|
|
transition: 0.5s width;
|
2020-03-31 20:45:14 +00:00
|
|
|
width: $medium-breakpoint;
|
2020-02-29 22:48:09 +00:00
|
|
|
|
|
|
|
@media (max-width: $medium-breakpoint) {
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
}
|