1
0
mirror of https://github.com/fazo96/homework.git synced 2025-01-09 12:10:08 +01:00

hide ribbon on small screens (fixes #5)

This commit is contained in:
fazo96 2014-05-27 20:41:20 +02:00
parent bf7c51d4b9
commit 2108fc369d

View File

@ -140,3 +140,10 @@ to tweak the top and right values in .github-fork-ribbon. */
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
/* Hide ribbon on small screens. */
@media (max-width:450px) {
.github-fork-ribbon-wrapper{
display: none;
}
}