Skip to content

Commit

Permalink
Fix broken tiles on smaller views
Browse files Browse the repository at this point in the history
  • Loading branch information
vapidinfinity committed Oct 11, 2024
1 parent 19e6561 commit 0e0ad67
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,12 @@ const socials = [

@media only screen and (max-width: 768px) {
.grid-container {
grid-template-columns: 1fr;
grid-template-rows: auto;
display: block;
}

.large-tile,
.small-tile {
grid-column: 1;
grid-column: auto;
grid-row: auto;
height: auto;
}
Expand Down

0 comments on commit 0e0ad67

Please sign in to comment.