feat: made mobile screenshots appear on the mobile how-do-i page

This commit is contained in:
moonleay 2023-12-06 17:26:49 +01:00
parent 5fa8ce75eb
commit 918b28c919
No known key found for this signature in database
GPG key ID: 82667543CCD715FB
2 changed files with 12 additions and 8 deletions

View file

@ -18,21 +18,23 @@
margin: auto;
text-align: center;
img {
.desktop {
display: none;
}
p, code {
.mobile {
display: flex;
border-radius: 5px;
max-width: 100%;
}
@media (min-width: 600px) {
img {
.desktop {
display: flex;
border-radius: 5px;
max-width: 100%;
}
p, code {
.mobile {
display: none;
}
}