Skip to content

Commit

Permalink
Fixing small screen ratio avatars
Browse files Browse the repository at this point in the history
  • Loading branch information
arranger1044 committed Nov 11, 2024
1 parent bd3b614 commit ee6ec07
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,22 @@ img.avatar{
-o-border-radius: 50%;
-ms-border-radius: 50%;
object-fit: cover;
}

@media only screen and (max-width: 720px) {
div #organizers {
display: grid;
width: 100%;
grid-template-columns: repeat(1, 1fr);
grid-column-gap: 50px;
margin-bottom: 40px;
}

div #speakers {
display: grid;
width: 100%;
grid-template-columns: repeat(1, 1fr);
grid-column-gap: 50px;
margin-bottom: 40px;
}
}

0 comments on commit ee6ec07

Please sign in to comment.