diff --git a/app/helpers/contracts_helper.rb b/app/helpers/contracts_helper.rb index b511a0a..52ac5c3 100644 --- a/app/helpers/contracts_helper.rb +++ b/app/helpers/contracts_helper.rb @@ -180,5 +180,15 @@ module ContractsHelper '' end end - + + # Simple calculator to dynamically figure out the css width % + # to fill a container. <100% is used to allow some padding. + def css_width_calculator(number_of_elements) + case number_of_elements + when 2 + " width: 48%" + when 3 + " width: 31%" + end + end end diff --git a/app/views/deliverables/_finances.html.erb b/app/views/deliverables/_finances.html.erb index 4f7b7f8..826fccc 100644 --- a/app/views/deliverables/_finances.html.erb +++ b/app/views/deliverables/_finances.html.erb @@ -7,7 +7,7 @@