diff options
-rw-r--r-- | view/pdl/mod_hq.pdl | 2 | ||||
-rw-r--r-- | view/tpl/hq_controls.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/pdl/mod_hq.pdl b/view/pdl/mod_hq.pdl index e078773f0..9e139d7b9 100644 --- a/view/pdl/mod_hq.pdl +++ b/view/pdl/mod_hq.pdl @@ -13,7 +13,7 @@ $content [widget=hq_controls] [var=wrapper_class]hq_controls_fixed_bottom_center d-lg-none[/var] - [var=entry_class]btn-primary shadow[/var] + [var=entry_class]btn-lg btn-primary shadow[/var] [/widget] [/region] [region=right_aside] diff --git a/view/tpl/hq_controls.tpl b/view/tpl/hq_controls.tpl index 333e21863..ce97a26a6 100644 --- a/view/tpl/hq_controls.tpl +++ b/view/tpl/hq_controls.tpl @@ -1,6 +1,6 @@ <div class="mb-3{{if $wrapper_class}} {{$wrapper_class}}{{/if}}"> {{foreach $entries as $e}} - <button id="{{$e.id}}" class="{{$e.class}} rounded-circle mr-1{{if $entry_class}} {{$entry_class}}{{/if}}" type="{{$e.type}}" title="{{$e.label}}"{{if $e.extra}} {{$e.extra}}{{/if}}> + <button id="{{$e.id}}" class="{{$e.class}} rounded-circle{{if $entry_class}} {{$entry_class}}{{/if}}" type="{{$e.type}}" title="{{$e.label}}"{{if $e.extra}} {{$e.extra}}{{/if}}> {{if $e.icon}}<i class="fa fa-{{$e.icon}}"></i>{{/if}} </button> {{/foreach}} |