Merge pull request #862 from hgiesel/reviewerbottombuttons

Hide stats buttons in reviewer bottom bar, if window width is too small
This commit is contained in:
Damien Elmes 2020-12-28 10:33:14 +10:00 committed by GitHub
commit 910e5d58f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,10 @@ button {
.stat {
padding-top: 5px;
@media (max-width: 583px) {
display: none;
}
}
.stat2 {
@ -78,3 +82,4 @@ button {
border-top-color: var(--faint-border);
}
}