Fix FogBugz import form col sizing

This commit is contained in:
Paul Slaughter 2018-05-31 15:45:13 -05:00
parent df164bb9f1
commit d89db91121

View file

@ -11,16 +11,16 @@
In the next steps, you'll be able to map users and select the projects In the next steps, you'll be able to map users and select the projects
you want to import. you want to import.
.form-group.row .form-group.row
= label_tag :uri, 'FogBugz URL', class: 'col-form-label col-sm-8' = label_tag :uri, 'FogBugz URL', class: 'col-form-label col-md-2'
.col-sm-4 .col-md-4
= text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control' = text_field_tag :uri, nil, placeholder: 'https://mycompany.fogbugz.com', class: 'form-control'
.form-group.row .form-group.row
= label_tag :email, 'FogBugz Email', class: 'col-form-label col-sm-8' = label_tag :email, 'FogBugz Email', class: 'col-form-label col-md-2'
.col-sm-4 .col-md-4
= text_field_tag :email, nil, class: 'form-control' = text_field_tag :email, nil, class: 'form-control'
.form-group.row .form-group.row
= label_tag :password, 'FogBugz Password', class: 'col-form-label col-sm-8' = label_tag :password, 'FogBugz Password', class: 'col-form-label col-md-2'
.col-sm-4 .col-md-4
= password_field_tag :password, nil, class: 'form-control' = password_field_tag :password, nil, class: 'form-control'
.form-actions .form-actions
= submit_tag 'Continue to the next step', class: 'btn btn-create' = submit_tag 'Continue to the next step', class: 'btn btn-create'