Skip to content

Commit

Permalink
Fix star size in <noscript> table
Browse files Browse the repository at this point in the history
  • Loading branch information
opatry committed Jan 30, 2025
1 parent afbdb1c commit b735f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ unless cover.nil?
<td>
<p aria-label="<%= book[:rating] %>" title="<%= book[:rating] %>" style="vertical-align: middle; text-align: center;">
<% 10.times do |i| %>
<%= star_svg(filled: i < book[:rating]) %>
<%= star_svg(filled: i < book[:rating], params: { size: 16 }) %>
<% end %>
</p>
</td>
Expand Down

0 comments on commit b735f6e

Please sign in to comment.