fix: media gallery in apple internet explorer

This commit is contained in:
trisua 2025-08-11 12:32:37 -04:00
parent ba319130d2
commit 46b3e66cd4
2 changed files with 9 additions and 4 deletions

View file

@ -12,7 +12,9 @@
@media screen and (max-width: 900px) {
.media_gallery {
grid-auto-flow: row dense;
/* grid-auto-flow: row dense; */ /* safari is the most shit browser ever dude, this property causes safari to make images overlap for lord knows why */
display: flex;
flex-direction: column;
}
}