You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
554 B

9 months ago
  1. <div class="mx-auto md:w-2/3 w-full flex">
  2. <div class="mx-auto">
  3. <%= render @score %>
  4. <%= link_to "Edit this score", edit_score_path(@score), class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
  5. <div class="inline-block ml-2">
  6. <%= button_to "Destroy this score", score_path(@score), method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
  7. </div>
  8. <%= link_to "Back to scores", scores_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
  9. </div>
  10. </div>