Skip to content

Commit da73178

Browse files
committed
Fix mobile view errors
1 parent 0c1ba66 commit da73178

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

themes/vocabulary_theme/templates/authors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<h1 class="container">Authors</h1>
99
</div>
1010
<div class="authors-list container">
11-
<div class="columns is-multiline">
11+
<div class="columns is-multiline is-mobile">
1212
{{ render_authors(this) }}
1313
</div>
1414
</div>

themes/vocabulary_theme/templates/macros/authors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{% macro render_authors(authors) %}
44
{% for author in site.query(authors.path) %}
5-
<div class="author column is-2">
5+
<div class="author column is-6-mobile is-2-desktop">
66
{% if author.md5_hashed_email %}
77
<figure class="image profile">
88
<img class="profile" src="https://secure.gravatar.com/avatar/{{ author.md5_hashed_email }}?size=200" alt="gravatar" />

0 commit comments

Comments
 (0)