Skip to content

Commit 1160e81

Browse files
committed
allow featured projects to occupy multiple lines so they are not cut off and inaccessible
1 parent 10896f9 commit 1160e81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

themes/vocabulary_theme/templates/blocks/featured-projects.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ <h2 class="is-paddingless level-left">
88
<a class="project-page-link" href="/contributing-code/projects/">See all available projects <i class="icon angle-right"></i></a>
99
</span>
1010
</div>
11-
<div class="project-list columns">
11+
<div class="project-list columns is-multiline">
1212
{% for repo in bag('repos.repos') %}
1313
{% if repo.featured %}
14-
<div class=" column is-one-third">
14+
<div class="column is-one-third">
1515
<article class="card entry-post vertical project-index">
1616
<div class="card-content">
1717
<h4 class="card-title b-header"><a href="{{ repo.url }}">{{ repo.english_name }}</a></h4>

themes/vocabulary_theme/templates/project_list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>Project List</h1>
1616
<h2 class="is-paddingless level-left">
1717
Featured Projects
1818
</h2>
19-
<div class="project-list columns">
19+
<div class="project-list columns is-multiline">
2020
{% for repo in bag('repos.repos') %}
2121
{% if repo.featured %}
2222
<div class=" column is-one-third">

0 commit comments

Comments
 (0)