From 1806a04b6962e034352b5416606b359941e48a1f Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Tue, 23 Mar 2021 16:30:13 -0700 Subject: [PATCH] Conf Admin: Allow for stats to reflow on small screens --- app/views/admin/conferences/show.html.haml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/admin/conferences/show.html.haml b/app/views/admin/conferences/show.html.haml index 0ad98b54..8e2ac428 100644 --- a/app/views/admin/conferences/show.html.haml +++ b/app/views/admin/conferences/show.html.haml @@ -3,16 +3,16 @@ Dashboard for #{@conference.title} %hr .row - .col-sm-3.col-xs-3 + .col-sm-3 = render "big_statistic", icon: "user", subtitle: "Registration", value: @total_reg, delta: @new_reg - .col-sm-3.col-xs-3 + .col-sm-3 = render "big_statistic", icon: "check-square", subtitle: "Submission", value: @total_submissions, delta: @new_submissions - .col-sm-3.col-xs-3 + .col-sm-3 = render "big_statistic", icon: "file-text", subtitle: "Hour", value: @program_length, delta: @new_program_length - .col-sm-3.col-xs-3 + .col-sm-3 = render "big_statistic", icon: "archive", subtitle: "Withdrawn", value: @total_withdrawn, delta: @new_withdrawn