about summary refs log tree commit diff
path: root/app/views/machines
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-08-25 01:21:33 -0400
committerBen Harris <ben@tilde.team>2021-08-25 01:21:33 -0400
commit54901541e35b29fcdc05cf036b1eeb203df7bd7d (patch)
tree0d6e6ed69299675d0e88c36d00aa68f5880f3630 /app/views/machines
parent4a235e8301ea3ee6e265e37c532c55d4012ef2b4 (diff)
improve form spacing
Diffstat (limited to 'app/views/machines')
-rw-r--r--app/views/machines/_form.html.erb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/machines/_form.html.erb b/app/views/machines/_form.html.erb
index 6d7aff3..1f693aa 100644
--- a/app/views/machines/_form.html.erb
+++ b/app/views/machines/_form.html.erb
@@ -1,4 +1,5 @@
 <%= form_with model: @machine do |form| %>
+  <br>
   <div>
     <%= form.label :name %><br>
     <%= form.text_field :name %>
@@ -6,6 +7,7 @@
       <div><%= message %></div>
     <% end %>
   </div>
+  <br>
 
   <div>
     <%= form.label :edition %><br>
@@ -14,8 +16,10 @@
       <div><%= message %></div>
     <% end %>
   </div>
+  <br>
 
   <div>
     <%= form.submit %>
   </div>
+  <br>
 <% end %>