Prev/next post pagination: hide title on small devices, when there's not enough space

This commit is contained in:
roneo.org 2022-09-23 19:15:49 +02:00
parent 3a0a4811cb
commit a4262fb255
2 changed files with 12 additions and 2 deletions

View file

@ -391,6 +391,16 @@ h6:hover .anchor {
text-align: left;
}
.paginav .name {
display: none;
}
@media screen and (min-width: 540px) {
.paginav .name {
display: block;
}
}
h1>a>svg {
display: inline;
}