Hide edit and view links in more menu on overview page unless on mobile
This commit is contained in:
parent
a89bdb5e57
commit
00916a9b45
|
@ -260,10 +260,16 @@
|
||||||
.desktop {
|
.desktop {
|
||||||
display: contents;
|
display: contents;
|
||||||
}
|
}
|
||||||
|
.mobile {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
.desktop {
|
.desktop {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.mobile {
|
||||||
|
display: contents;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue