Fix broken on mobile gallery

This commit is contained in:
Hexaitos 2024-10-12 13:03:15 +02:00
parent 3469304cc6
commit bc9800b1e6
2 changed files with 20 additions and 2 deletions

View File

@ -259,7 +259,6 @@ footer p:last-of-type {
/* CSS gallery from w3schools.com */
div.art {
width: 100%;
display: flex;
justify-content: center;
}
@ -298,12 +297,22 @@ div.desc {
width: 49.99999%;
margin: 6px 0;
}
div.art {
display: inherit;
justify-content: inherit
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
div.art {
display: inherit;
justify-content: inherit
}
}
.clearfix:after {

View File

@ -259,7 +259,6 @@ footer p:last-of-type {
/* CSS gallery from w3schools.com */
div.art {
width: 100%;
display: flex;
justify-content: center;
}
@ -298,12 +297,22 @@ div.desc {
width: 49.99999%;
margin: 6px 0;
}
div.art {
display: inherit;
justify-content: inherit
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
div.art {
display: inherit;
justify-content: inherit
}
}
.clearfix:after {