1
0
Fork 0
mirror of synced 2024-09-11 15:08:05 +12:00

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

View file

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