Skip to content

Commit

Permalink
fix img size
Browse files Browse the repository at this point in the history
  • Loading branch information
rvailleux committed Sep 6, 2024
1 parent 1795e90 commit 33b8e15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion _includes/agenda.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h3 id="talk-{% increment counter %}">{{ talk.title }}</h3>
{% assign speakerObj = page.Speakers.list | where: 'id', speaker.id | first %}
<div class="d-flex align-items-center mr-5">
<a href="#{{ speakerObj.id }}">
<img class="speaker-photo rounded-circle mr-2" src="{{ site.baseurl }}{{ speakerObj.photo_url }}"
<img class="speaker-photo rounded-circle mr-2" style="width: 50px;" src="{{ site.baseurl }}{{ speakerObj.photo_url }}"
alt="{{ speakerObj.name }}">
</a>
<a href="#{{ speakerObj.id }}">
Expand Down
10 changes: 0 additions & 10 deletions _sass/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -675,14 +675,4 @@ section#speakers {
}
}
}
.talk-box {

.talk-speakers {
img.speaker-photo {
width: 50px;

}
}
}

}

0 comments on commit 33b8e15

Please sign in to comment.