Skip to content

Commit b632894

Browse files
authored
Disable figure resizing on people page (#45)
1 parent c016ad3 commit b632894

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/team/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@
66

77
<br>
88

9-
<table style="display: flex; justify-content: center;">
9+
<table style="justify-content: center; width: 1000px; display: table;">
1010
{% tablerow member in team cols:2 %}
1111
{% if member.image %}
1212
{% assign image = member.image %}
1313
{% else %}
1414
{% assign image = "/assets/images/team/placeholder-user.png" %}
1515
{% endif %}
16-
<div class="media" style="display: flex; align-items: start; width:30vw; height:15vw">
17-
<a class="pull-left" style="margin-right: 20px;">
18-
<img src="{{ image }}" style="border-radius: 50%; width: 13vw; height: 13vw;">
16+
<div class="media" style="align-items: start;">
17+
<a class="pull-left" style="margin-right: 20px; width: 175px; height: 175px;">
18+
<img src="{{ image }}" style="border-radius: 50%;">
1919
</a>
2020
<div class="media-body" style="word-wrap: break-word; overflow-wrap: break-word;">
21-
<p style="margin: 0px;">
21+
<p style="margin: 0px; font-size: 20px;">
2222
{% if member.site %}
2323
<a href="{{ member.site }}" class="off">{{ member.name }}</a>
2424
{% else %}
2525
{{ member.name }}
2626
{% endif %}
2727
</p>
28-
<p style="margin: 0px;">{{ member.position }}</p>
29-
<p style="margin: 0px;">{{ member.affiliation }}</p>
28+
<p style="margin: 0px; font-size: 16px;">{{ member.position }}</p>
29+
<p style="margin: 0px; font-size: 16px;">{{ member.affiliation }}</p>
3030
</div>
3131
</div>
3232
{% endtablerow %}

0 commit comments

Comments
 (0)