Merge pull request #169 from 67P/feature/163-small_screen_details_new

Show contributor/contribution details on mobile
This commit was merged in pull request #169.
This commit is contained in:
2019-12-02 15:57:22 +01:00
committed by GitHub
3 changed files with 16 additions and 4 deletions
@@ -84,5 +84,17 @@ section#contribution-details {
}
}
}
}
// On small screens, hide intro text, contributor and contributions list when
// showing details
@include media-max(small) {
#dashboard.with-details {
#contributions, #stats {
display: none;
}
}
#intro.with-details {
display: none;
}
}