1
0
mirror of https://github.com/fazo96/homework.git synced 2025-04-18 03:38:40 +02:00

hide ribbon on small screens (fixes )

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;
}
}