[fix] Make gallery navigation buttons visible on mobile devices (#3953)

This commit is contained in:
Christian Byrne
2025-05-21 18:34:13 -07:00
committed by GitHub
parent 7c0040bfec
commit 178c79e559
2 changed files with 185 additions and 0 deletions

View File

@@ -144,4 +144,12 @@ img.galleria-image {
/* Set z-index so the close button doesn't get hidden behind the image when image is large */
z-index: 1;
}
/* Mobile/tablet specific fixes */
@media screen and (max-width: 768px) {
.p-galleria-prev-button,
.p-galleria-next-button {
z-index: 2;
}
}
</style>