Skip to content

Commit

Permalink
ADD: mobile extended resolutions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-nginx committed Jul 25, 2017
1 parent 10e682b commit 17bbe16
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions source/css/_mixins/base.styl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ the-transition() {
transition-delay: 0s;
}

mobile-smallest() {
@media (max-width: 413px) {
{block}
}
}

mobile-small() {
@media (max-width: 567px) {
{block}
}
}

mobile() {
@media (max-width: 767px) {
{block}
Expand Down Expand Up @@ -44,6 +56,10 @@ hide() {
display: none !important;
}

show() {
display: block !important;
}

fixbutton() {
right: 20px;
opacity: 0.8;
Expand Down

0 comments on commit 17bbe16

Please sign in to comment.