Skip to content

Commit

Permalink
Remove line-height inline style for list items
Browse files Browse the repository at this point in the history
This causes text to overlap when lines are long, as they are on mobile
or when the window is narrow.

Fixes abseil#429
  • Loading branch information
akonradi committed Mar 7, 2023
1 parent bd6b520 commit 997775e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fast/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ below in the order of re-publication.**
<li><b>{{post.date | date: '%B %d, %Y' }}</b></li>
{% assign datelist = datelist | append: cur_date %}
{% endunless %}
<p style="text-indent:25px;line-height:5px;">
<p style="text-indent:25px;">
<a href="{{ post.url }}">{{ post.title }}</a>
</p>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion tips/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ below in the order of re-publication.**
<li><b>{{post.date | date: '%B %d, %Y' }}</b></li>
{% assign datelist = datelist | append: cur_date %}
{% endunless %}
<p style="text-indent:25px;line-height:5px;">
<p style="text-indent:25px;">
<a href="{{ post.url }}">{{ post.title }}</a>
</p>
{% endif %}
Expand Down

0 comments on commit 997775e

Please sign in to comment.