We don't need any row classes anymore because the <body> already has a maximum width. As for columns, we only have one column in this form, so we don't need them either. Besides, the form's parent element already has a padding.
15 lines
316 B
Plaintext
15 lines
316 B
Plaintext
<div class="proposal-edit">
|
|
|
|
<div class="small-12 column">
|
|
<%= back_link_to %>
|
|
|
|
<div class="float-right">
|
|
<%= link_to t("proposals.edit.show_link"), @proposal %>
|
|
</div>
|
|
|
|
<h1><%= t("proposals.edit.editing") %></h1>
|
|
|
|
<%= render "form", form_url: proposal_path(@proposal) %>
|
|
</div>
|
|
</div>
|