Bauke/tildes-issue-log
Bauke
/
tildes-issue-log
Archived
1
Fork 0
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.
tildes-issue-log/source/pages/scss/_mixins.scss

10 lines
162 B
SCSS
Raw Normal View History

@mixin constrain-width {
margin: auto;
transition: 0.5s width;
2020-03-31 20:45:14 +00:00
width: $medium-breakpoint;
@media (max-width: $medium-breakpoint) {
width: 95%;
}
}