summaryrefslogtreecommitdiff
path: root/includes/view
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-12-13 12:37:05 +0100
committermsquare <msquare@notrademark.de>2017-12-13 12:37:05 +0100
commit991058a9e4321b525856aefec7116ca090db9dfa (patch)
tree624f67fb2e3a97ed01f211111a6d470a84bb682a /includes/view
parentadc62470c51384094a34608cbd594cc52af899b6 (diff)
improve public dashboard
Diffstat (limited to 'includes/view')
-rw-r--r--includes/view/PublicDashboard_view.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/view/PublicDashboard_view.php b/includes/view/PublicDashboard_view.php
index 27ae97e3..4a25d0bf 100644
--- a/includes/view/PublicDashboard_view.php
+++ b/includes/view/PublicDashboard_view.php
@@ -12,7 +12,7 @@ function public_dashboard_view($stats, $free_shifts)
$shift_panels[] = public_dashborad_shift_render($shift);
}
$needed_angels = div('container-fluid first', [
- div('col-xs-12', [
+ div('col-md-12', [
heading(_('Needed angels:'), 1)
]),
join($shift_panels)
@@ -66,11 +66,11 @@ function public_dashborad_shift_render($shift)
// $panel_body = '<a href="' . shift_link($shift) . '">' . $panel_body . '</a>';
- return div('col-xs-3', [
+ return div('col-md-3', [
div('dashboard-panel panel panel-' . $style, [
div('panel-body', [
'<a class="panel-link" href="' . shift_link($shift) . '"></a>',
- heading($panel_body, 4)
+ $panel_body
])
])
]);