web/views/benchmarks.erb in sidekiq-benchmark-0.3.1 vs web/views/benchmarks.erb in sidekiq-benchmark-0.3.2

- old
+ new

@@ -1,22 +1,22 @@ <script type="text/javascript" src="//www.google.com/jsapi"></script> <%= js :chartkick %> <header class="row"> - <div class="span5"> + <div class="col-md-6"> <h3>Benchmarks</h3> </div> </header> <section> <% @types.each do |type| %> <h4><%= type %></h4> <figure class="row"> - <div class="span6"> + <div class="col-md-7"> <h5>Amount of tasks by execution time</h5> <%= column_chart @charts[type][:stats], library: { hAxis: { title: "Execution time" }, vAxis: { title: "Tasks" } } %> </div> - <div class="span5"> + <div class="col-md-5"> <h5>Average execution time</h5> <%= pie_chart @charts[type][:total] %> </div> </figure> <% end %>