Skip to content

Commit

Permalink
Merge pull request #1894 from codebar/add-missing-class-to-buttons-me…
Browse files Browse the repository at this point in the history
…mbers-new-page

Add missing .btn class to buttons on member/new page
  • Loading branch information
matyikriszta committed Aug 4, 2023
2 parents cc80cd0 + 33ae747 commit adb8776
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/members/new.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
%p.lead
= t('members.new.students.github')
.d-flex.flex-column.align-items-start
= link_to registration_path(member_type: 'student'), class: 'btn-lg btn-primary mb-4 text-decoration-none' do
= link_to registration_path(member_type: 'student'), class: 'btn btn-lg btn-primary mb-4 text-decoration-none' do
= t('members.sign_up_as_student')
%i.fab.fa-github
= link_to registration_path(member_type: 'coach'), class: 'btn-lg btn-primary text-decoration-none' do
= link_to registration_path(member_type: 'coach'), class: 'btn btn-lg btn-primary text-decoration-none' do
= t('members.sign_up_as_coach')
%i.fab.fa-github

0 comments on commit adb8776

Please sign in to comment.