aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-06-18 08:59:22 +0000
committerMario <mario@mariovavti.com>2021-06-18 08:59:22 +0000
commit0e7473c3ba4e1da24ee4b7c9cc32645364e31a3d (patch)
tree88803b989122dddd905f0e4ea60301859c103615 /view
parentf4f9ccc3b234eaadf29b3f5c8bec6e19de0aa761 (diff)
downloadvolse-hubzilla-0e7473c3ba4e1da24ee4b7c9cc32645364e31a3d.tar.gz
volse-hubzilla-0e7473c3ba4e1da24ee4b7c9cc32645364e31a3d.tar.bz2
volse-hubzilla-0e7473c3ba4e1da24ee4b7c9cc32645364e31a3d.zip
more css improvements
Diffstat (limited to 'view')
-rw-r--r--view/pdl/mod_hq.pdl2
-rw-r--r--view/tpl/hq_controls.tpl2
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}}