From fc1d32e63a99aa0545c148b281b908e3c7149da3 Mon Sep 17 00:00:00 2001 From: Jonathan Hooper Date: Sun, 20 Aug 2017 23:21:02 -0500 Subject: [PATCH] Increase width of USPS confirmation code input **Why**: So that the input is wide enough to display 10 alpha-numeric characters --- app/inputs/inline_input.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/inputs/inline_input.rb b/app/inputs/inline_input.rb index 34cec13f070..06426f535b0 100644 --- a/app/inputs/inline_input.rb +++ b/app/inputs/inline_input.rb @@ -3,7 +3,7 @@ def input(_wrapper_options) input_html_classes.push('col-10 field monospace') template.content_tag( :div, builder.text_field(attribute_name, input_html_options), - class: 'col col-12 sm-col-4 mb4 sm-mb0' + class: 'col col-12 sm-col-5 mb4 sm-mb0' ) end