clean styling

This commit is contained in:
Josh
2018-06-13 15:51:10 -04:00
parent 7fadd6be69
commit bc67d9e1e5
15 changed files with 81 additions and 402 deletions

View File

@ -1,14 +1,14 @@
<%= render 'shared/room_event' do %>
<%= form_for room_path(@room), method: :post do |f| %>
<div class="input-group" style="height: 48px;">
<div class="input-group join-input">
<%= f.text_field :join_name,
required: true,
class: "form-control main-large",
class: "form-control join-form",
placeholder: "Enter your name!",
value: "#{current_user ? current_user.name : ''}",
readonly: !current_user.nil? %>
<span class="input-group-append">
<%= f.submit "Join", class: "btn btn-primary px-7 main-large" %>
<%= f.submit "Join", class: "btn btn-primary px-7 join-form" %>
</span>
</div>
<% end %>