Uhh, mobile support

This commit is contained in:
city-unit 2023-08-30 22:54:34 -04:00
parent 7d6ff2ee3c
commit ab440a3d7b

View File

@ -3584,4 +3584,20 @@ a {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Jank mobile support for gallery and future draggables */
@media screen and (max-width: 1000px) {
#gallery {
display: block;
width: 100vw;
height: 100vh;
z-index: 9999;
}
.draggable {
display: block;
width: 100vw;
height: 100vh;
z-index: 9999;
}
}