How might I add CSS to this:
<h9>Sunday</h9>
<% @sunday.each do |chorelist| %><br>
<p2><%= chorelist.name %></p2>
<%= button_to "Delete", chorelists_destroy_path(id: chorelist.id),
class:"btn btn-space" %>
<% end %>
I'm not sure where I could add a div class or button class. (I'm still relatively new to Rails.)
Thanks!