railsのdeviseのデザインをSemantic UIで作っている途中でform_forのクラスの適用の方法をミスしてしまったので、メモ。
<form class="ui large form">
<div class="ui stacked segment">
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
form_forに:html => {:class => 'ui large form'}
としてあげることでclassが適用される。
<%= form_for(resource, as: resource_name, :html => {:class => 'ui large form'}, url: registration_path(resource_name)) do |f| %>
<div class="ui stacked segment">