Show contributor/contribution details on mobile

Refs #163

On small screens, when selecting a contribution or contributor, the
lists are hidden and only the details are shown.
This commit is contained in:
2019-11-29 18:05:52 +01:00
parent 8c759601ca
commit 9898d4bb1d
2 changed files with 12 additions and 3 deletions
@@ -84,5 +84,14 @@ section#contribution-details {
}
}
}
}
// On small screens, hide contributor and contributions list when
// showing details
@include media-max(small) {
#dashboard.with-details {
#contributions, #stats {
display: none;
}
}
}