Hide edit and view links in more menu on overview page unless on mobile

This commit is contained in:
Andrew Kingston 2023-01-13 12:05:42 +00:00
parent a89bdb5e57
commit 00916a9b45
1 changed files with 6 additions and 0 deletions

View File

@ -260,10 +260,16 @@
.desktop {
display: contents;
}
.mobile {
display: none;
}
@media (max-width: 640px) {
.desktop {
display: none;
}
.mobile {
display: contents;
}
}
</style>