Skip to content

Commit

Permalink
Update apps.html
Browse files Browse the repository at this point in the history
  • Loading branch information
MYXXdev committed Aug 3, 2024
1 parent 953028b commit 06f100e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions MYXXfm/pages/apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

.container {
display: flex;
flex-direction: row; /* Default to horizontal layout */
justify-content: center;
align-items: center;
gap: 20px; /* Space between images */
Expand All @@ -43,16 +44,17 @@
/* Ensure responsiveness */
@media (max-width: 600px) {
.container {
flex-direction: row; /* Ensure images stay side by side */
overflow-x: auto; /* Allow horizontal scrolling if needed */
flex-direction: column; /* Stack images vertically on small screens */
overflow-x: hidden; /* Prevent horizontal scrolling */
align-items: stretch; /* Ensure images take full width */
}

.container a {
max-width: 50%; /* Allow more space for each image on small screens */
max-width: 100%; /* Allow images to take full width on small screens */
}

.image {
max-width: 100%; /* Adjust width to fit smaller screens */
width: 100%; /* Adjust width to fit smaller screens */
}
}
</style>
Expand Down

0 comments on commit 06f100e

Please sign in to comment.