Skip to content

Commit 06f56e3

Browse files
committed
fix layout issue with text over book images
1 parent ef4bc2a commit 06f56e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/site/books/index.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ Here's a collection of books about Dart.
1313

1414
{% for book in page.books %}
1515
<div class="book row">
16-
<div class="col-md-2">
16+
<div class="col-md-3">
1717
<a href="{{ book.link }}"><img src="covers/{{ book.cover }}" class="cover"></a>
1818
</div>
19-
<div class="col-md-10">
19+
<div class="col-md-9">
2020
<h3 class="title"><a href="{{ book.link }}">{{ book.title }}</a></h3>
2121
<h4 class="authors">Written by {{ book.authors || array_to_sentence_string }}</h4>
2222
<p>{{ book.desc }}</p>

0 commit comments

Comments
 (0)