fix css and html structure

This commit is contained in:
Ludovic CANDELLIER
2023-02-05 22:57:47 +01:00
parent 32291dc44a
commit cb488383e0
8 changed files with 42 additions and 31 deletions

View File

@@ -0,0 +1,15 @@
@include('components.form.button', [
'id' => 'by_cards',
'icon' => 'fa-th',
'style' => ($display_by_rows ?? false) ? ' font-size: x-small;' : '',
'class' => 'btn-secondary',
'title' => 'Vue par vignettes',
])
@include('components.form.button', [
'id' => 'by_rows',
'icon' => 'fa-list',
'style' => (!$display_by_rows ?? true) ? ' font-size: x-small;' : '',
'class' => 'btn-secondary',
'title' => 'Vue par lignes',
])