form_forのhamlの書き方について書いていきます。
.form
= form_for [@group, @message] do |f|
= f.text_field :content, class: 'form__message', placeholder: 'type a message'
.form__mask
= f.label :image, class: 'form__mask__image' do
= icon('fas', 'image', class: 'icon')
= f.file_field :image, class: 'hidden'
= f.submit 'Send', class: 'form__submit'
form_forのクラス名(ビューが親をflexにすることによって崩れた時など)
= form_for [@group, @message], html: { class: "foo" }
fにクラスをつける
= f.submit "送る", class: "submit-btn"