Update guidelines.scss

Update to hide page's footer image when the screen is too small.
This commit is contained in:
The_Grits 2016-08-31 21:11:19 -04:00 committed by GitHub
parent 07d7750b9c
commit bf24d592ad

View file

@ -1,4 +1,5 @@
@import "../../colors";
@import "../../frameless";
.guidelines {
.guidelines-footer {
@ -12,3 +13,9 @@
}
}
}
@media only screen and (max-width: $tablet - 1){
.guidelines-footer {
display: none;
}
}